/home/novatio1/softsql.sql
-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: November 17, 2025, 11:48 am
-- Server version: 10.11.15
-- PHP Version: 8.4.14
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
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: `novatio1_wp972`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_actionscheduler_actions`
--
CREATE TABLE `wp8u_actionscheduler_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) NOT NULL,
`status` varchar(20) NOT NULL,
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
`priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
`args` varchar(191) DEFAULT NULL,
`schedule` longtext DEFAULT NULL,
`group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`attempts` int(11) NOT NULL DEFAULT 0,
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`extended_args` varchar(8000) DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_actionscheduler_actions`
--
INSERT INTO `wp8u_actionscheduler_actions` VALUES
(9, 'srfm_daily_scheduled_action', 'complete', '2025-11-16 00:00:00', '2025-11-16 00:00:00', 10, '[]', 'O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"\0*\0scheduled_timestamp";i:1763251200;s:18:"\0*\0first_timestamp";i:1763251200;s:13:"\0*\0recurrence";i:86400;s:49:"\0ActionScheduler_IntervalSchedule\0start_timestamp";i:1763251200;s:53:"\0ActionScheduler_IntervalSchedule\0interval_in_seconds";i:86400;}', 1, 1, '2025-11-16 00:05:29', '2025-11-16 00:05:29', 0, NULL),
(10, 'srfm_daily_scheduled_action', 'complete', '2025-11-16 00:00:00', '2025-11-16 00:00:00', 10, '[]', 'O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"\0*\0scheduled_timestamp";i:1763251200;s:18:"\0*\0first_timestamp";i:1763251200;s:13:"\0*\0recurrence";i:86400;s:49:"\0ActionScheduler_IntervalSchedule\0start_timestamp";i:1763251200;s:53:"\0ActionScheduler_IntervalSchedule\0interval_in_seconds";i:86400;}', 1, 1, '2025-11-16 00:05:29', '2025-11-16 00:05:29', 0, NULL),
(11, 'action_scheduler/migration_hook', 'complete', '2025-11-15 05:08:31', '2025-11-15 05:08:31', 10, '[]', 'O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"\0*\0scheduled_timestamp";i:1763183311;s:41:"\0ActionScheduler_SimpleSchedule\0timestamp";i:1763183311;}', 2, 1, '2025-11-15 05:09:19', '2025-11-15 05:09:19', 0, NULL),
(12, 'action_scheduler/migration_hook', 'canceled', '2025-11-15 05:08:31', '2025-11-15 05:08:31', 10, '[]', 'O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"\0*\0scheduled_timestamp";i:1763183311;s:41:"\0ActionScheduler_SimpleSchedule\0timestamp";i:1763183311;}', 2, 0, '2025-11-15 05:09:19', '2025-11-15 05:09:19', 0, NULL),
(13, 'srfm_daily_scheduled_action', 'pending', '2025-11-17 00:05:29', '2025-11-17 00:05:29', 10, '[]', 'O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"\0*\0scheduled_timestamp";i:1763337929;s:18:"\0*\0first_timestamp";i:1763251200;s:13:"\0*\0recurrence";i:86400;s:49:"\0ActionScheduler_IntervalSchedule\0start_timestamp";i:1763337929;s:53:"\0ActionScheduler_IntervalSchedule\0interval_in_seconds";i:86400;}', 1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, NULL),
(14, 'srfm_daily_scheduled_action', 'pending', '2025-11-17 00:05:29', '2025-11-17 00:05:29', 10, '[]', 'O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"\0*\0scheduled_timestamp";i:1763337929;s:18:"\0*\0first_timestamp";i:1763251200;s:13:"\0*\0recurrence";i:86400;s:49:"\0ActionScheduler_IntervalSchedule\0start_timestamp";i:1763337929;s:53:"\0ActionScheduler_IntervalSchedule\0interval_in_seconds";i:86400;}', 1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_actionscheduler_claims`
--
CREATE TABLE `wp8u_actionscheduler_claims` (
`claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_actionscheduler_groups`
--
CREATE TABLE `wp8u_actionscheduler_groups` (
`group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_actionscheduler_groups`
--
INSERT INTO `wp8u_actionscheduler_groups` VALUES
(1, 'sureforms'),
(2, 'action-scheduler-migration');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_actionscheduler_logs`
--
CREATE TABLE `wp8u_actionscheduler_logs` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint(20) unsigned NOT NULL,
`message` text NOT NULL,
`log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_actionscheduler_logs`
--
INSERT INTO `wp8u_actionscheduler_logs` VALUES
(1, 9, 'action created', '2025-11-15 05:07:31', '2025-11-15 05:07:31'),
(2, 10, 'action created', '2025-11-15 05:07:31', '2025-11-15 05:07:31'),
(3, 11, 'action created', '2025-11-15 05:07:31', '2025-11-15 05:07:31'),
(4, 12, 'action created', '2025-11-15 05:07:31', '2025-11-15 05:07:31'),
(5, 11, 'action started via Async Request', '2025-11-15 05:09:19', '2025-11-15 05:09:19'),
(6, 12, 'action canceled', '2025-11-15 05:09:19', '2025-11-15 05:09:19'),
(7, 11, 'action complete via Async Request', '2025-11-15 05:09:19', '2025-11-15 05:09:19'),
(8, 12, 'action ignored via Async Request', '2025-11-15 05:09:19', '2025-11-15 05:09:19'),
(9, 9, 'action started via WP Cron', '2025-11-16 00:05:29', '2025-11-16 00:05:29'),
(10, 9, 'action complete via WP Cron', '2025-11-16 00:05:29', '2025-11-16 00:05:29'),
(11, 13, 'action created', '2025-11-16 00:05:29', '2025-11-16 00:05:29'),
(12, 10, 'action started via WP Cron', '2025-11-16 00:05:29', '2025-11-16 00:05:29'),
(13, 10, 'action complete via WP Cron', '2025-11-16 00:05:29', '2025-11-16 00:05:29'),
(14, 14, 'action created', '2025-11-16 00:05:29', '2025-11-16 00:05:29');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_commentmeta`
--
CREATE TABLE `wp8u_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_comments`
--
CREATE TABLE `wp8u_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_comments`
--
INSERT INTO `wp8u_comments` VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2025-11-15 04:37:52', '2025-11-15 04:37:52', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com/">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_cookieadmin_cookies`
--
CREATE TABLE `wp8u_cookieadmin_cookies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cookie_name` varchar(100) NOT NULL,
`category` varchar(50) DEFAULT NULL,
`description` varchar(500) DEFAULT NULL,
`domain` varchar(255) NOT NULL,
`path` varchar(255) DEFAULT '/',
`expires` datetime DEFAULT NULL,
`max_age` int(11) DEFAULT NULL,
`samesite` varchar(10) DEFAULT NULL,
`secure` tinyint(1) NOT NULL DEFAULT 0,
`httponly` tinyint(1) NOT NULL DEFAULT 0,
`raw_name` varchar(255) DEFAULT NULL,
`edited` tinyint(1) DEFAULT 0,
`patterns` varchar(255) NOT NULL DEFAULT '[]',
`scan_timestamp` int(11) DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_activities`
--
CREATE TABLE `wp8u_latepoint_activities` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) DEFAULT NULL,
`booking_id` int(11) DEFAULT NULL,
`service_id` int(11) DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`location_id` int(11) DEFAULT NULL,
`order_id` int(11) DEFAULT NULL,
`order_item_id` int(11) DEFAULT NULL,
`coupon_id` int(11) DEFAULT NULL,
`code` varchar(255) NOT NULL,
`description` text DEFAULT NULL,
`initiated_by` varchar(100) DEFAULT NULL,
`initiated_by_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_agents`
--
CREATE TABLE `wp8u_latepoint_agents` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`avatar_image_id` int(11) DEFAULT NULL,
`bio_image_id` int(11) DEFAULT NULL,
`first_name` varchar(255) NOT NULL,
`last_name` varchar(255) DEFAULT NULL,
`display_name` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`bio` text DEFAULT NULL,
`features` text DEFAULT NULL,
`email` varchar(110) NOT NULL,
`phone` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`custom_hours` tinyint(1) DEFAULT NULL,
`wp_user_id` int(11) DEFAULT NULL,
`status` varchar(20) NOT NULL,
`extra_emails` text DEFAULT NULL,
`extra_phones` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_agents_services`
--
CREATE TABLE `wp8u_latepoint_agents_services` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) NOT NULL,
`service_id` int(11) NOT NULL,
`location_id` int(11) DEFAULT NULL,
`is_custom_hours` tinyint(1) DEFAULT NULL,
`is_custom_price` tinyint(1) DEFAULT NULL,
`is_custom_duration` tinyint(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `agent_id_index` (`agent_id`),
KEY `service_id_index` (`service_id`),
KEY `location_id_index` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_agent_meta`
--
CREATE TABLE `wp8u_latepoint_agent_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_blocked_periods`
--
CREATE TABLE `wp8u_latepoint_blocked_periods` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`summary` text DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`start_time` mediumint(9) DEFAULT NULL,
`end_time` mediumint(9) DEFAULT NULL,
`start_datetime_utc` datetime DEFAULT NULL,
`end_datetime_utc` datetime DEFAULT NULL,
`service_id` mediumint(9) DEFAULT NULL,
`agent_id` mediumint(9) DEFAULT NULL,
`location_id` mediumint(9) DEFAULT NULL,
`server_timezone` varchar(100) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `start_date_index` (`start_date`),
KEY `end_date_index` (`end_date`),
KEY `service_id_index` (`service_id`),
KEY `agent_id_index` (`agent_id`),
KEY `location_id_index` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_bookings`
--
CREATE TABLE `wp8u_latepoint_bookings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`booking_code` varchar(10) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`start_time` mediumint(9) DEFAULT NULL,
`end_time` mediumint(9) DEFAULT NULL,
`start_datetime_utc` datetime DEFAULT NULL,
`end_datetime_utc` datetime DEFAULT NULL,
`buffer_before` mediumint(9) NOT NULL,
`buffer_after` mediumint(9) NOT NULL,
`duration` mediumint(9) DEFAULT NULL,
`status` varchar(30) NOT NULL DEFAULT 'pending',
`customer_id` mediumint(9) NOT NULL,
`service_id` mediumint(9) NOT NULL,
`agent_id` mediumint(9) NOT NULL,
`location_id` mediumint(9) DEFAULT NULL,
`order_item_id` mediumint(9) DEFAULT NULL,
`recurrence_id` mediumint(9) DEFAULT NULL,
`total_attendees` mediumint(4) DEFAULT NULL,
`customer_timezone` varchar(100) DEFAULT NULL,
`server_timezone` varchar(100) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `start_date_index` (`start_date`),
KEY `end_date_index` (`end_date`),
KEY `status_index` (`status`),
KEY `customer_id_index` (`customer_id`),
KEY `service_id_index` (`service_id`),
KEY `agent_id_index` (`agent_id`),
KEY `location_id_index` (`location_id`),
KEY `recurrence_id_index` (`recurrence_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_booking_meta`
--
CREATE TABLE `wp8u_latepoint_booking_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_bundles`
--
CREATE TABLE `wp8u_latepoint_bundles` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`short_description` text DEFAULT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`deposit_amount` decimal(20,4) DEFAULT NULL,
`status` varchar(20) NOT NULL,
`visibility` varchar(20) NOT NULL,
`order_number` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `order_number_index` (`order_number`),
KEY `status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_bundles_services`
--
CREATE TABLE `wp8u_latepoint_bundles_services` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`bundle_id` mediumint(9) DEFAULT NULL,
`service_id` mediumint(9) DEFAULT NULL,
`total_attendees` mediumint(4) DEFAULT NULL,
`duration` int(11) DEFAULT NULL,
`quantity` mediumint(4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bundle_id_index` (`bundle_id`),
KEY `service_id_index` (`service_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_bundle_meta`
--
CREATE TABLE `wp8u_latepoint_bundle_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_carts`
--
CREATE TABLE `wp8u_latepoint_carts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uuid` varchar(36) DEFAULT NULL,
`order_intent_id` int(11) DEFAULT NULL,
`order_id` int(11) DEFAULT NULL,
`coupon_code` varchar(100) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `uuid_index` (`uuid`),
KEY `order_id_index` (`order_id`),
KEY `order_intent_id_index` (`order_intent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_cart_items`
--
CREATE TABLE `wp8u_latepoint_cart_items` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cart_id` int(11) NOT NULL,
`variant` varchar(55) DEFAULT NULL,
`item_data` text DEFAULT NULL,
`connected_cart_item_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `connected_cart_item_id_index` (`connected_cart_item_id`),
KEY `cart_id_index` (`cart_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_cart_meta`
--
CREATE TABLE `wp8u_latepoint_cart_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_customers`
--
CREATE TABLE `wp8u_latepoint_customers` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`uuid` varchar(36) DEFAULT NULL,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`email` varchar(320) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`avatar_image_id` int(11) DEFAULT NULL,
`status` varchar(50) NOT NULL,
`password` varchar(255) DEFAULT NULL,
`activation_key` varchar(255) DEFAULT NULL,
`account_nonse` varchar(255) DEFAULT NULL,
`google_user_id` varchar(255) DEFAULT NULL,
`facebook_user_id` varchar(255) DEFAULT NULL,
`wordpress_user_id` int(11) DEFAULT NULL,
`is_guest` tinyint(1) DEFAULT NULL,
`notes` text DEFAULT NULL,
`admin_notes` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uuid_index` (`uuid`),
KEY `email_index` (`email`),
KEY `status_index` (`status`),
KEY `wordpress_user_id_index` (`wordpress_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_customer_meta`
--
CREATE TABLE `wp8u_latepoint_customer_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_customer_otp_codes`
--
CREATE TABLE `wp8u_latepoint_customer_otp_codes` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`contact_value` varchar(255) NOT NULL,
`contact_type` varchar(30) NOT NULL,
`delivery_method` varchar(30) NOT NULL,
`otp_hash` varchar(255) NOT NULL,
`expires_at` datetime NOT NULL,
`status` varchar(30) NOT NULL DEFAULT 'active',
`attempts` int(11) DEFAULT 0,
`used_at` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_contact_status` (`contact_value`,`status`),
KEY `idx_expires_status` (`expires_at`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_custom_prices`
--
CREATE TABLE `wp8u_latepoint_custom_prices` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) NOT NULL,
`service_id` int(11) NOT NULL,
`location_id` int(11) NOT NULL,
`is_price_variable` tinyint(1) DEFAULT NULL,
`price_min` decimal(20,4) DEFAULT NULL,
`price_max` decimal(20,4) DEFAULT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`is_deposit_required` tinyint(1) DEFAULT NULL,
`deposit_amount` decimal(20,4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `agent_id_index` (`agent_id`),
KEY `service_id_index` (`service_id`),
KEY `location_id_index` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_locations`
--
CREATE TABLE `wp8u_latepoint_locations` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`full_address` text DEFAULT NULL,
`status` varchar(20) NOT NULL,
`category_id` int(11) DEFAULT NULL,
`order_number` int(11) DEFAULT NULL,
`selection_image_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_latepoint_locations`
--
INSERT INTO `wp8u_latepoint_locations` VALUES
(1, 'Main Location', NULL, 'active', 0, NULL, NULL, '2025-11-15 05:08:08', '2025-11-15 05:08:08');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_location_categories`
--
CREATE TABLE `wp8u_latepoint_location_categories` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`short_description` text DEFAULT NULL,
`parent_id` mediumint(9) DEFAULT NULL,
`selection_image_id` int(11) DEFAULT NULL,
`order_number` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `order_number_index` (`order_number`),
KEY `parent_id_index` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_orders`
--
CREATE TABLE `wp8u_latepoint_orders` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`subtotal` decimal(20,4) DEFAULT NULL,
`total` decimal(20,4) DEFAULT NULL,
`status` varchar(30) NOT NULL DEFAULT 'open',
`fulfillment_status` varchar(30) NOT NULL DEFAULT 'not_fulfilled',
`payment_status` varchar(30) NOT NULL DEFAULT 'not_paid',
`source_id` varchar(100) DEFAULT NULL,
`source_url` text DEFAULT NULL,
`ip_address` varchar(55) DEFAULT NULL,
`customer_id` int(11) NOT NULL,
`customer_comment` text DEFAULT NULL,
`confirmation_code` varchar(10) DEFAULT NULL,
`price_breakdown` text DEFAULT NULL,
`coupon_code` varchar(100) DEFAULT NULL,
`coupon_discount` decimal(20,4) DEFAULT NULL,
`tax_total` decimal(20,4) DEFAULT NULL,
`initial_payment_data` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `customer_id_index` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_order_intents`
--
CREATE TABLE `wp8u_latepoint_order_intents` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`intent_key` varchar(55) NOT NULL,
`customer_id` int(11) NOT NULL,
`cart_items_data` text DEFAULT NULL,
`restrictions_data` text DEFAULT NULL,
`presets_data` text DEFAULT NULL,
`payment_data` text DEFAULT NULL,
`other_data` text DEFAULT NULL,
`order_id` int(11) DEFAULT NULL,
`booking_form_page_url` text DEFAULT NULL,
`total` decimal(20,4) DEFAULT NULL,
`subtotal` decimal(20,4) DEFAULT NULL,
`coupon_code` varchar(100) DEFAULT NULL,
`coupon_discount` decimal(20,4) DEFAULT NULL,
`tax_total` decimal(20,4) DEFAULT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`specs_charge_amount` varchar(55) DEFAULT NULL,
`price_breakdown` text DEFAULT NULL,
`status` varchar(30) NOT NULL DEFAULT 'new',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `intent_key_index` (`intent_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_order_invoices`
--
CREATE TABLE `wp8u_latepoint_order_invoices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`invoice_number` varchar(10) DEFAULT NULL,
`data` text DEFAULT NULL,
`status` varchar(30) NOT NULL DEFAULT 'open',
`charge_amount` decimal(20,4) DEFAULT NULL,
`due_at` datetime DEFAULT NULL,
`payment_portion` varchar(55) DEFAULT NULL,
`access_key` varchar(36) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `invoice_number_index` (`invoice_number`),
KEY `order_id_index` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_order_items`
--
CREATE TABLE `wp8u_latepoint_order_items` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`variant` varchar(55) DEFAULT NULL,
`item_data` text DEFAULT NULL,
`subtotal` decimal(20,4) DEFAULT NULL,
`total` decimal(20,4) DEFAULT NULL,
`coupon_code` varchar(100) DEFAULT NULL,
`coupon_discount` decimal(20,4) DEFAULT NULL,
`tax_total` decimal(20,4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `order_id_index` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_order_meta`
--
CREATE TABLE `wp8u_latepoint_order_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_payment_requests`
--
CREATE TABLE `wp8u_latepoint_payment_requests` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`invoice_id` int(11) NOT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`due_at` datetime DEFAULT NULL,
`portion` varchar(55) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `invoice_id_index` (`invoice_id`),
KEY `order_id_index` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_processes`
--
CREATE TABLE `wp8u_latepoint_processes` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(110) NOT NULL,
`event_type` varchar(110) NOT NULL,
`actions_json` text DEFAULT NULL,
`status` varchar(30) DEFAULT 'active',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_latepoint_processes`
--
INSERT INTO `wp8u_latepoint_processes` VALUES
(1, 'New Booking Notification', 'booking_created', '[{"type":"group","trigger_condition":false,"items":[{"type":"action","id":"pa_TjQxqn","settings":{"status":"active","type":"send_email","settings":{"to_email":"{{agent_full_name}} <{{agent_email}}>","subject":"New Appointment Received","content":"<div style=\\"padding: 20px; background-color: #f0f0f0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, sans-serif;\\">\\n\\t<div style=\\"background-color: #fff; padding: 30px; margin: 0px auto; max-width: 450px; box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.2); border-radius: 6px;\\">\\n\\t\\t<div style=\\"margin: 0px auto 30px auto; border-bottom: 1px solid #eee; padding-bottom: 20px;\\">\\n\\t\\t\\t<table style=\\"width: 100%;\\">\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{business_logo_image}}<\\/td>\\n\\t\\t\\t\\t\\t<td style=\\"text-align: right;\\"><span style=\\"color: #7b7b7b;\\">Questions?<\\/span><br\\/><strong>{{business_phone}}<\\/strong><\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/table>\\n\\t\\t<\\/div>\\n\\t\\t<div style=\\"font-size: 16px; line-height: 1.5;\\">\\n\\t\\t\\t<div style=\\"font-size: 16px; margin-bottom: 20px; line-height: 1.6;\\">\\n\\tHi {{agent_full_name}},\\n\\t<br\\/><br\\/>\\n\\tYou have received a new appointment request from {{customer_full_name}}\\n<\\/div>\\n<h4 style=\\"margin-bottom: 10px; margin-top: 0px; font-size: 16px; font-weight: bold;\\">Customer Information<\\/h4>\\n<ul>\\n\\t<li>\\n\\t\\t<span>Full Name:<\\/span> <strong>{{customer_full_name}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Email Address:<\\/span> <strong>{{customer_email}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Phone:<\\/span> <strong>{{customer_phone}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Comments:<\\/span> <strong>{{customer_notes}}<\\/strong>\\n\\t<\\/li>\\n<\\/ul>\\n<h4 style=\\"margin-bottom: 10px; margin-top: 0px; font-size: 16px; font-weight: bold;\\">Appointment Information<\\/h4>\\n<ul>\\n\\t<li>\\n\\t\\t<span>Service:<\\/span> <strong>{{service_name}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Date, Time:<\\/span> <strong>{{start_date}}, {{start_time}} - {{end_time}}<\\/strong>\\n\\t<\\/li>\\n<\\/ul>\\n<h4 style=\\"margin-bottom: 10px; margin-top: 0px; font-size: 16px; font-weight: bold;\\">Order Summary<\\/h4>\\n<div style=\\"margin-bottom: 20px;\\">{{order_summary_breakdown}}<\\/div>\\n<div style=\\"margin-top: 25px;\\">\\n\\t<a href=\\"{{manage_booking_url_agent}}\\" style=\\"display: block; text-decoration: none; padding: 10px; border-radius: 6px; text-align: center; font-size: 18px; color: #fff; background-color: #1e7bff; font-weight: 700;\\">Manage This Appointment<\\/a>\\n<\\/div>\\n\\t\\t<\\/div>\\n\\t<\\/div>\\n\\t<div style=\\"max-width: 450px; margin: 10px auto; text-align: center;\\">{{business_address}}<\\/div>\\n<\\/div>"}}},{"type":"action","id":"pa_OXM9VN","settings":{"status":"active","type":"send_email","settings":{"to_email":"{{customer_full_name}} <{{customer_email}}>","subject":"Appointment Confirmation","content":"<div style=\\"padding: 20px; background-color: #f0f0f0; font-family: -apple-system, system-ui, BlinkMacSystemFont, \\"Segoe UI\\", Roboto, \\"Helvetica Neue\\", Arial, sans-serif;\\">\\n\\t<div style=\\"background-color: #fff; padding: 30px; margin: 0px auto; max-width: 450px; box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.2); border-radius: 6px;\\">\\n\\t\\t<div style=\\"margin: 0px auto 30px auto; border-bottom: 1px solid #eee; padding-bottom: 20px;\\">\\n\\t\\t\\t<table style=\\"width: 100%;\\">\\n\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t<td>{{business_logo_image}}<\\/td>\\n\\t\\t\\t\\t\\t<td style=\\"text-align: right;\\"><span style=\\"color: #7b7b7b;\\">Questions?<\\/span><br\\/><strong>{{business_phone}}<\\/strong><\\/td>\\n\\t\\t\\t\\t<\\/tr>\\n\\t\\t\\t<\\/table>\\n\\t\\t<\\/div>\\n\\t\\t<div style=\\"font-size: 16px; line-height: 1.5;\\">\\n\\t\\t\\t<div style=\\"font-size: 16px; margin-bottom: 20px; line-height: 1.6;\\">\\n\\tHi {{customer_full_name}},\\n\\t<br>\\n\\t<br>\\n\\tYour {{service_name}} appointment with <strong>{{agent_full_name}}<\\/strong> is <strong>{{booking_status}}<\\/strong>.\\n<\\/div>\\n<h4 style=\\"margin-bottom: 10px; margin-top: 0px; font-size: 16px; font-weight: bold;\\">Appointment Details:<\\/h4>\\n<ul>\\n\\t<li>\\n\\t\\t<span>Agent:<\\/span> <strong>{{agent_full_name}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Service:<\\/span> <strong>{{service_name}}<\\/strong>\\n\\t<\\/li>\\n\\t<li>\\n\\t\\t<span>Date, Time:<\\/span> <strong>{{start_date}}, {{start_time}} - {{end_time}}<\\/strong>\\n\\t<\\/li>\\n<\\/ul>\\n<h4 style=\\"margin-bottom: 10px; margin-top: 0px; font-size: 16px; font-weight: bold;\\">Order Summary<\\/h4>\\n<div style=\\"margin-bottom: 20px;\\">{{order_summary_breakdown}}<\\/div>\\n<div style=\\"margin-top: 25px;\\">\\n\\t<a href=\\"{{manage_booking_url_customer}}\\" style=\\"display: block; text-decoration: none; padding: 10px; border-radius: 6px; text-align: center; font-size: 18px; color: #fff; background-color: #1e7bff; font-weight: 700;\\">Manage This Appointment<\\/a>\\n<\\/div>\\n\\t\\t<\\/div>\\n\\t<\\/div>\\n\\t<div style=\\"max-width: 450px; margin: 10px auto; text-align: center;\\">{{business_address}}<\\/div>\\n<\\/div>"}}}],"time_offset":[]}]', 'active', '2025-11-15 05:08:07', '2025-11-15 05:08:07');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_process_jobs`
--
CREATE TABLE `wp8u_latepoint_process_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`process_id` int(11) NOT NULL,
`object_id` int(11) NOT NULL,
`object_model_type` varchar(55) DEFAULT NULL,
`settings` text DEFAULT NULL,
`to_run_after_utc` datetime DEFAULT NULL,
`status` varchar(30) DEFAULT 'scheduled',
`run_result` text DEFAULT NULL,
`process_info` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_recurrences`
--
CREATE TABLE `wp8u_latepoint_recurrences` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`rules` text DEFAULT NULL,
`overrides` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_services`
--
CREATE TABLE `wp8u_latepoint_services` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`short_description` text DEFAULT NULL,
`is_price_variable` tinyint(1) DEFAULT NULL,
`price_min` decimal(20,4) DEFAULT NULL,
`price_max` decimal(20,4) DEFAULT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`deposit_amount` decimal(20,4) DEFAULT NULL,
`is_deposit_required` tinyint(1) DEFAULT NULL,
`duration_name` varchar(255) DEFAULT NULL,
`override_default_booking_status` varchar(255) DEFAULT NULL,
`duration` int(11) NOT NULL,
`buffer_before` int(11) DEFAULT NULL,
`buffer_after` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`order_number` int(11) DEFAULT NULL,
`selection_image_id` int(11) DEFAULT NULL,
`description_image_id` int(11) DEFAULT NULL,
`bg_color` varchar(20) DEFAULT NULL,
`earliest_possible_booking` varchar(50) DEFAULT NULL,
`latest_possible_booking` varchar(50) DEFAULT NULL,
`timeblock_interval` int(11) DEFAULT NULL,
`capacity_min` int(4) DEFAULT NULL,
`capacity_max` int(4) DEFAULT NULL,
`status` varchar(20) NOT NULL,
`visibility` varchar(20) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `category_id_index` (`category_id`),
KEY `order_number_index` (`order_number`),
KEY `status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_service_categories`
--
CREATE TABLE `wp8u_latepoint_service_categories` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`short_description` text DEFAULT NULL,
`parent_id` mediumint(9) DEFAULT NULL,
`selection_image_id` int(11) DEFAULT NULL,
`order_number` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `order_number_index` (`order_number`),
KEY `parent_id_index` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_service_meta`
--
CREATE TABLE `wp8u_latepoint_service_meta` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`object_id` mediumint(9) NOT NULL,
`meta_key` varchar(110) NOT NULL,
`meta_value` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_index` (`meta_key`),
KEY `object_id_index` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_sessions`
--
CREATE TABLE `wp8u_latepoint_sessions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`session_key` varchar(55) NOT NULL,
`session_value` longtext NOT NULL,
`expiration` bigint(20) unsigned NOT NULL,
`hash` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_settings`
--
CREATE TABLE `wp8u_latepoint_settings` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(110) NOT NULL,
`value` longtext DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name_index` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_latepoint_settings`
--
INSERT INTO `wp8u_latepoint_settings` VALUES
(1, 'default_booking_status', 'approved', '2025-11-15 05:08:07', '2025-11-15 05:08:07'),
(2, 'timeslot_blocking_statuses', 'approved', '2025-11-15 05:08:07', '2025-11-15 05:08:07'),
(3, 'calendar_hidden_statuses', 'cancelled', '2025-11-15 05:08:07', '2025-11-15 05:08:07'),
(4, 'need_action_statuses', 'pending,payment_pending', '2025-11-15 05:08:07', '2025-11-15 05:08:07'),
(5, 'is_database_seeded', '1', '2025-11-15 05:08:07', '2025-11-15 05:08:07'),
(6, 'page_url_customer_dashboard', '/customer-cabinet', '2025-11-15 05:08:08', '2025-11-15 05:08:08'),
(7, 'page_url_customer_login', '/customer-cabinet', '2025-11-15 05:08:08', '2025-11-15 05:08:08'),
(8, 'selected_customer_authentication_field_type', 'email', '2025-11-15 05:08:09', '2025-11-15 05:08:09'),
(9, 'step_codes_in_order', 'booking__services,booking__agents,booking__datepicker,customer,verify,payment__times,payment__portions,payment__methods,payment__processors,payment__pay,confirmation', '2025-11-15 05:10:16', '2025-11-15 05:10:16'),
(10, 'steps_settings', 'a:12:{s:6:"shared";a:1:{s:18:"steps_support_text";s:54:"<h5>Questions?</h5><p>Call (858) 939-3746 for help</p>";}s:17:"booking__services";a:3:{s:18:"side_panel_heading";s:17:"Service Selection";s:22:"side_panel_description";s:69:"Please select a service for which you want to schedule an appointment";s:18:"main_panel_heading";s:18:"Available Services";}s:15:"booking__agents";a:3:{s:18:"side_panel_heading";s:15:"Agent Selection";s:22:"side_panel_description";s:59:"Please select an agent that will be providing you a service";s:18:"main_panel_heading";s:16:"Available Agents";}s:19:"booking__datepicker";a:3:{s:18:"side_panel_heading";s:18:"Select Date & Time";s:22:"side_panel_description";s:48:"Please select date and time for your appointment";s:18:"main_panel_heading";s:21:"Date & Time Selection";}s:8:"customer";a:3:{s:18:"side_panel_heading";s:22:"Enter Your Information";s:22:"side_panel_description";s:37:"Please enter your contact information";s:18:"main_panel_heading";s:20:"Customer Information";}s:6:"verify";a:3:{s:18:"side_panel_heading";s:20:"Verify Order Details";s:22:"side_panel_description";s:86:"Double check your reservation details and click submit button if everything is correct";s:18:"main_panel_heading";s:20:"Verify Order Details";}s:14:"payment__times";a:3:{s:18:"side_panel_heading";s:22:"Payment Time Selection";s:22:"side_panel_description";s:61:"Please choose when you would like to pay for your appointment";s:18:"main_panel_heading";s:27:"When would you like to pay?";}s:17:"payment__portions";a:3:{s:18:"side_panel_heading";s:25:"Payment Portion Selection";s:22:"side_panel_description";s:48:"Please select how much you would like to pay now";s:18:"main_panel_heading";s:35:"How much would you like to pay now?";}s:16:"payment__methods";a:3:{s:18:"side_panel_heading";s:24:"Payment Method Selection";s:22:"side_panel_description";s:68:"Please select a payment method you would like to make a payment with";s:18:"main_panel_heading";s:21:"Select payment method";}s:19:"payment__processors";a:3:{s:18:"side_panel_heading";s:27:"Payment Processor Selection";s:22:"side_panel_description";s:70:"Please select a payment processor you want to process the payment with";s:18:"main_panel_heading";s:24:"Select payment processor";}s:12:"payment__pay";a:3:{s:18:"side_panel_heading";s:14:"Make a Payment";s:22:"side_panel_description";s:67:"Please enter your payment information so we can process the payment";s:18:"main_panel_heading";s:30:"Enter your payment information";}s:12:"confirmation";a:3:{s:18:"side_panel_heading";s:12:"Confirmation";s:22:"side_panel_description";s:76:"Your order has been placed. Please retain this confirmation for your record.";s:18:"main_panel_heading";s:18:"Order Confirmation";}}', '2025-11-15 05:10:16', '2025-11-15 05:10:16');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_steps`
--
CREATE TABLE `wp8u_latepoint_steps` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` text DEFAULT NULL,
`before_content` text DEFAULT NULL,
`after_content` text DEFAULT NULL,
`side_title` text DEFAULT NULL,
`side_description` text DEFAULT NULL,
`use_custom_image` tinyint(1) DEFAULT NULL,
`custom_image_id` int(11) DEFAULT NULL,
`code` varchar(100) DEFAULT NULL,
`parent_step_id` smallint(6) DEFAULT NULL,
`position` smallint(6) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_step_settings`
--
CREATE TABLE `wp8u_latepoint_step_settings` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`label` varchar(50) NOT NULL,
`value` text DEFAULT NULL,
`step` varchar(50) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `step_index` (`step`),
KEY `label_index` (`label`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_transactions`
--
CREATE TABLE `wp8u_latepoint_transactions` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`token` text DEFAULT NULL,
`invoice_id` int(11) DEFAULT NULL,
`order_id` int(11) DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`processor` varchar(100) DEFAULT NULL,
`payment_method` varchar(55) DEFAULT NULL,
`payment_portion` varchar(55) DEFAULT NULL,
`kind` varchar(40) DEFAULT NULL,
`status` varchar(100) NOT NULL,
`amount` decimal(20,4) DEFAULT NULL,
`receipt_number` varchar(10) DEFAULT NULL,
`access_key` varchar(36) DEFAULT NULL,
`notes` text DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_transaction_intents`
--
CREATE TABLE `wp8u_latepoint_transaction_intents` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`intent_key` varchar(55) NOT NULL,
`order_id` int(11) NOT NULL,
`customer_id` int(11) DEFAULT NULL,
`invoice_id` int(11) DEFAULT NULL,
`transaction_id` int(11) DEFAULT NULL,
`payment_data` text DEFAULT NULL,
`charge_amount` decimal(20,4) DEFAULT NULL,
`specs_charge_amount` varchar(55) DEFAULT NULL,
`order_form_page_url` text DEFAULT NULL,
`status` varchar(30) NOT NULL DEFAULT 'new',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `intent_key_index` (`intent_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_transaction_refunds`
--
CREATE TABLE `wp8u_latepoint_transaction_refunds` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`token` text DEFAULT NULL,
`transaction_id` int(11) DEFAULT NULL,
`amount` decimal(20,4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_latepoint_work_periods`
--
CREATE TABLE `wp8u_latepoint_work_periods` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`agent_id` int(11) NOT NULL,
`service_id` int(11) NOT NULL,
`location_id` int(11) NOT NULL,
`start_time` smallint(6) NOT NULL,
`end_time` smallint(6) NOT NULL,
`week_day` tinyint(3) NOT NULL,
`custom_date` date DEFAULT NULL,
`chain_id` varchar(20) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `agent_id_index` (`agent_id`),
KEY `service_id_index` (`service_id`),
KEY `location_id_index` (`location_id`),
KEY `week_day_index` (`week_day`),
KEY `custom_date_index` (`custom_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_links`
--
CREATE TABLE `wp8u_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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 '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_loginizer_logs`
--
CREATE TABLE `wp8u_loginizer_logs` (
`username` varchar(255) NOT NULL DEFAULT '',
`time` int(10) NOT NULL DEFAULT 0,
`count` int(10) NOT NULL DEFAULT 0,
`lockout` int(10) NOT NULL DEFAULT 0,
`ip` varchar(255) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
--
-- Dumping data for table `wp8u_loginizer_logs`
--
INSERT INTO `wp8u_loginizer_logs` VALUES
('admin', 1763272368, 2, 0, '165.232.171.99', 'http://novationinteriors.com/wp//xmlrpc.php'),
('admin', 1763251533, 3, 1, '52.224.245.15', 'http://novationinteriors.com/wp//xmlrpc.php');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_options`
--
CREATE TABLE `wp8u_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_options`
--
INSERT INTO `wp8u_options` VALUES
(1, 'cron', 'a:16:{i:1763275873;a:1:{s:26:"action_scheduler_run_queue";a:1:{s:32:"0d04ed39571b55704c122d726248bbac";a:3:{s:8:"schedule";s:12:"every_minute";s:4:"args";a:1:{i:0;s:7:"WP Cron";}s:8:"interval";i:60;}}}i:1763276863;a:1:{s:34:"suretriggers_retry_failed_requests";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:32:"suretriggers_retry_cron_schedule";s:4:"args";a:0:{}s:8:"interval";i:1800;}}}i:1763278672;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:1763291262;a:1:{s:30:"surerank_generate_sitemap_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:15:"every_six_hours";s:4:"args";a:0:{}s:8:"interval";i:21600;}}}i:1763291263;a:1:{s:34:"suretriggers_verify_api_connection";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:44:"suretriggers_verify_connection_cron_schedule";s:4:"args";a:0:{}s:8:"interval";i:21600;}}}i:1763311072;a:2:{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;}}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;}}}i:1763311088;a:1:{s:21:"wp_update_user_counts";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1763354272;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:1763354288;a:4:{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:18:"backuply_clean_tmp";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:14:"backuply_daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}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:1763356063;a:1:{s:42:"suretriggers_webhook_requests_cleanup_logs";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1763356088;a:2:{s:42:"latepoint_check_if_addons_update_available";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:33:"latepoint_clear_old_activity_logs";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1763415724;a:1:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1763786279;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:1763786485;a:1:{s:24:"astra_delete_docs_folder";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}i:1763872672;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;}}}s:7:"version";i:2;}', 'on'),
(2, 'siteurl', 'https://novationinteriors.com/wp', 'on'),
(3, 'home', 'https://novationinteriors.com/wp', 'on'),
(4, 'blogname', 'www.novationinteriors.com', 'on'),
(5, 'blogdescription', 'You Dream We Create', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'admin@novationinteriors.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:15:{i:0;s:27:"astra-sites/astra-sites.php";i:1;s:17:"backup/backup.php";i:2;s:21:"backuply/backuply.php";i:3;s:27:"cookieadmin/cookieadmin.php";i:4;s:47:"file-manager-advanced/file_manager_advanced.php";i:5;s:17:"gosmtp/gosmtp.php";i:6;s:23:"latepoint/latepoint.php";i:7;s:23:"loginizer/loginizer.php";i:8;s:23:"pagelayer/pagelayer.php";i:9;s:19:"siteseo/siteseo.php";i:10;s:27:"speedycache/speedycache.php";i:11;s:23:"sureforms/sureforms.php";i:12;s:21:"surerank/surerank.php";i:13;s:29:"suretriggers/suretriggers.php";i:14;s:63:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', '', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60421', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:0:{}', 'on'),
(78, 'widget_text', 'a:0:{}', 'on'),
(79, 'widget_rss', 'a:0:{}', 'on'),
(80, 'uninstall_plugins', 'a:6:{s:23:"loginizer/loginizer.php";s:22:"loginizer_deactivation";s:19:"siteseo/siteseo.php";s:27:"\\SiteSEO\\Install::uninstall";s:21:"backuply/backuply.php";s:21:"backuply_deactivation";s:27:"speedycache/speedycache.php";s:31:"\\SpeedyCache\\Install::uninstall";s:17:"backup/backup.php";a:2:{i:0;s:30:"\\JetBackup\\Wordpress\\Installer";i:1;s:9:"uninstall";}s:29:"suretriggers/suretriggers.php";a:2:{i:0;s:50:"SureTriggers\\Controllers\\WebhookRequestsController";i:1;s:36:"suretriggers_remove_table_retry_cron";}}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '298', 'on'),
(83, 'page_on_front', '226', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '0', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1778733472', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'initial_db_version', '60421', 'on'),
(102, 'wp8u_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:64:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:14:"siteseo_manage";b:1;s:23:"manage_zip_ai_assistant";b:1;s:26:"manage_ast_block_templates";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:35:{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:23:"manage_zip_ai_assistant";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;}}}', 'on'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '1', 'off'),
(105, 'widget_block', 'a:6:{i:2;a:1:{s:7:"content";s:19:"<!-- wp:search /-->";}i:3;a:1:{s:7:"content";s:154:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->";}i:4;a:1:{s:7:"content";s:227:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {"displayAvatar":false,"displayDate":false,"displayExcerpt":false} /--></div><!-- /wp:group -->";}i:5;a:1:{s:7:"content";s:146:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->";}i:6;a:1:{s:7:"content";s:150:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->";}s:12:"_multiwidget";i:1;}', 'auto'),
(106, 'sidebars_widgets', 'a:9:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:5:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";i:3;s:7:"block-5";i:4;s:7:"block-6";}s:15:"footer-widget-1";a:0:{}s:15:"footer-widget-2";a:0:{}s:24:"advanced-footer-widget-1";a:0:{}s:24:"advanced-footer-widget-2";a:0:{}s:24:"advanced-footer-widget-3";a:0:{}s:24:"advanced-footer-widget-4";a:0:{}s:13:"array_version";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(121, 'recovery_keys', 'a:0:{}', 'off'),
(122, 'theme_mods_twentytwentyfive', 'a:2:{s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1763181618;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";}}}}', 'off'),
(123, '_transient_wp_core_block_css_files', 'a:2:{s:7:"version";s:5:"6.8.3";s:5:"files";a:536:{i:0;s:23:"archives/editor-rtl.css";i:1;s:27:"archives/editor-rtl.min.css";i:2;s:19:"archives/editor.css";i:3;s:23:"archives/editor.min.css";i:4;s:22:"archives/style-rtl.css";i:5;s:26:"archives/style-rtl.min.css";i:6;s:18:"archives/style.css";i:7;s:22:"archives/style.min.css";i:8;s:20:"audio/editor-rtl.css";i:9;s:24:"audio/editor-rtl.min.css";i:10;s:16:"audio/editor.css";i:11;s:20:"audio/editor.min.css";i:12;s:19:"audio/style-rtl.css";i:13;s:23:"audio/style-rtl.min.css";i:14;s:15:"audio/style.css";i:15;s:19:"audio/style.min.css";i:16;s:19:"audio/theme-rtl.css";i:17;s:23:"audio/theme-rtl.min.css";i:18;s:15:"audio/theme.css";i:19;s:19:"audio/theme.min.css";i:20;s:21:"avatar/editor-rtl.css";i:21;s:25:"avatar/editor-rtl.min.css";i:22;s:17:"avatar/editor.css";i:23;s:21:"avatar/editor.min.css";i:24;s:20:"avatar/style-rtl.css";i:25;s:24:"avatar/style-rtl.min.css";i:26;s:16:"avatar/style.css";i:27;s:20:"avatar/style.min.css";i:28;s:21:"button/editor-rtl.css";i:29;s:25:"button/editor-rtl.min.css";i:30;s:17:"button/editor.css";i:31;s:21:"button/editor.min.css";i:32;s:20:"button/style-rtl.css";i:33;s:24:"button/style-rtl.min.css";i:34;s:16:"button/style.css";i:35;s:20:"button/style.min.css";i:36;s:22:"buttons/editor-rtl.css";i:37;s:26:"buttons/editor-rtl.min.css";i:38;s:18:"buttons/editor.css";i:39;s:22:"buttons/editor.min.css";i:40;s:21:"buttons/style-rtl.css";i:41;s:25:"buttons/style-rtl.min.css";i:42;s:17:"buttons/style.css";i:43;s:21:"buttons/style.min.css";i:44;s:22:"calendar/style-rtl.css";i:45;s:26:"calendar/style-rtl.min.css";i:46;s:18:"calendar/style.css";i:47;s:22:"calendar/style.min.css";i:48;s:25:"categories/editor-rtl.css";i:49;s:29:"categories/editor-rtl.min.css";i:50;s:21:"categories/editor.css";i:51;s:25:"categories/editor.min.css";i:52;s:24:"categories/style-rtl.css";i:53;s:28:"categories/style-rtl.min.css";i:54;s:20:"categories/style.css";i:55;s:24:"categories/style.min.css";i:56;s:19:"code/editor-rtl.css";i:57;s:23:"code/editor-rtl.min.css";i:58;s:15:"code/editor.css";i:59;s:19:"code/editor.min.css";i:60;s:18:"code/style-rtl.css";i:61;s:22:"code/style-rtl.min.css";i:62;s:14:"code/style.css";i:63;s:18:"code/style.min.css";i:64;s:18:"code/theme-rtl.css";i:65;s:22:"code/theme-rtl.min.css";i:66;s:14:"code/theme.css";i:67;s:18:"code/theme.min.css";i:68;s:22:"columns/editor-rtl.css";i:69;s:26:"columns/editor-rtl.min.css";i:70;s:18:"columns/editor.css";i:71;s:22:"columns/editor.min.css";i:72;s:21:"columns/style-rtl.css";i:73;s:25:"columns/style-rtl.min.css";i:74;s:17:"columns/style.css";i:75;s:21:"columns/style.min.css";i:76;s:33:"comment-author-name/style-rtl.css";i:77;s:37:"comment-author-name/style-rtl.min.css";i:78;s:29:"comment-author-name/style.css";i:79;s:33:"comment-author-name/style.min.css";i:80;s:29:"comment-content/style-rtl.css";i:81;s:33:"comment-content/style-rtl.min.css";i:82;s:25:"comment-content/style.css";i:83;s:29:"comment-content/style.min.css";i:84;s:26:"comment-date/style-rtl.css";i:85;s:30:"comment-date/style-rtl.min.css";i:86;s:22:"comment-date/style.css";i:87;s:26:"comment-date/style.min.css";i:88;s:31:"comment-edit-link/style-rtl.css";i:89;s:35:"comment-edit-link/style-rtl.min.css";i:90;s:27:"comment-edit-link/style.css";i:91;s:31:"comment-edit-link/style.min.css";i:92;s:32:"comment-reply-link/style-rtl.css";i:93;s:36:"comment-reply-link/style-rtl.min.css";i:94;s:28:"comment-reply-link/style.css";i:95;s:32:"comment-reply-link/style.min.css";i:96;s:30:"comment-template/style-rtl.css";i:97;s:34:"comment-template/style-rtl.min.css";i:98;s:26:"comment-template/style.css";i:99;s:30:"comment-template/style.min.css";i:100;s:42:"comments-pagination-numbers/editor-rtl.css";i:101;s:46:"comments-pagination-numbers/editor-rtl.min.css";i:102;s:38:"comments-pagination-numbers/editor.css";i:103;s:42:"comments-pagination-numbers/editor.min.css";i:104;s:34:"comments-pagination/editor-rtl.css";i:105;s:38:"comments-pagination/editor-rtl.min.css";i:106;s:30:"comments-pagination/editor.css";i:107;s:34:"comments-pagination/editor.min.css";i:108;s:33:"comments-pagination/style-rtl.css";i:109;s:37:"comments-pagination/style-rtl.min.css";i:110;s:29:"comments-pagination/style.css";i:111;s:33:"comments-pagination/style.min.css";i:112;s:29:"comments-title/editor-rtl.css";i:113;s:33:"comments-title/editor-rtl.min.css";i:114;s:25:"comments-title/editor.css";i:115;s:29:"comments-title/editor.min.css";i:116;s:23:"comments/editor-rtl.css";i:117;s:27:"comments/editor-rtl.min.css";i:118;s:19:"comments/editor.css";i:119;s:23:"comments/editor.min.css";i:120;s:22:"comments/style-rtl.css";i:121;s:26:"comments/style-rtl.min.css";i:122;s:18:"comments/style.css";i:123;s:22:"comments/style.min.css";i:124;s:20:"cover/editor-rtl.css";i:125;s:24:"cover/editor-rtl.min.css";i:126;s:16:"cover/editor.css";i:127;s:20:"cover/editor.min.css";i:128;s:19:"cover/style-rtl.css";i:129;s:23:"cover/style-rtl.min.css";i:130;s:15:"cover/style.css";i:131;s:19:"cover/style.min.css";i:132;s:22:"details/editor-rtl.css";i:133;s:26:"details/editor-rtl.min.css";i:134;s:18:"details/editor.css";i:135;s:22:"details/editor.min.css";i:136;s:21:"details/style-rtl.css";i:137;s:25:"details/style-rtl.min.css";i:138;s:17:"details/style.css";i:139;s:21:"details/style.min.css";i:140;s:20:"embed/editor-rtl.css";i:141;s:24:"embed/editor-rtl.min.css";i:142;s:16:"embed/editor.css";i:143;s:20:"embed/editor.min.css";i:144;s:19:"embed/style-rtl.css";i:145;s:23:"embed/style-rtl.min.css";i:146;s:15:"embed/style.css";i:147;s:19:"embed/style.min.css";i:148;s:19:"embed/theme-rtl.css";i:149;s:23:"embed/theme-rtl.min.css";i:150;s:15:"embed/theme.css";i:151;s:19:"embed/theme.min.css";i:152;s:19:"file/editor-rtl.css";i:153;s:23:"file/editor-rtl.min.css";i:154;s:15:"file/editor.css";i:155;s:19:"file/editor.min.css";i:156;s:18:"file/style-rtl.css";i:157;s:22:"file/style-rtl.min.css";i:158;s:14:"file/style.css";i:159;s:18:"file/style.min.css";i:160;s:23:"footnotes/style-rtl.css";i:161;s:27:"footnotes/style-rtl.min.css";i:162;s:19:"footnotes/style.css";i:163;s:23:"footnotes/style.min.css";i:164;s:23:"freeform/editor-rtl.css";i:165;s:27:"freeform/editor-rtl.min.css";i:166;s:19:"freeform/editor.css";i:167;s:23:"freeform/editor.min.css";i:168;s:22:"gallery/editor-rtl.css";i:169;s:26:"gallery/editor-rtl.min.css";i:170;s:18:"gallery/editor.css";i:171;s:22:"gallery/editor.min.css";i:172;s:21:"gallery/style-rtl.css";i:173;s:25:"gallery/style-rtl.min.css";i:174;s:17:"gallery/style.css";i:175;s:21:"gallery/style.min.css";i:176;s:21:"gallery/theme-rtl.css";i:177;s:25:"gallery/theme-rtl.min.css";i:178;s:17:"gallery/theme.css";i:179;s:21:"gallery/theme.min.css";i:180;s:20:"group/editor-rtl.css";i:181;s:24:"group/editor-rtl.min.css";i:182;s:16:"group/editor.css";i:183;s:20:"group/editor.min.css";i:184;s:19:"group/style-rtl.css";i:185;s:23:"group/style-rtl.min.css";i:186;s:15:"group/style.css";i:187;s:19:"group/style.min.css";i:188;s:19:"group/theme-rtl.css";i:189;s:23:"group/theme-rtl.min.css";i:190;s:15:"group/theme.css";i:191;s:19:"group/theme.min.css";i:192;s:21:"heading/style-rtl.css";i:193;s:25:"heading/style-rtl.min.css";i:194;s:17:"heading/style.css";i:195;s:21:"heading/style.min.css";i:196;s:19:"html/editor-rtl.css";i:197;s:23:"html/editor-rtl.min.css";i:198;s:15:"html/editor.css";i:199;s:19:"html/editor.min.css";i:200;s:20:"image/editor-rtl.css";i:201;s:24:"image/editor-rtl.min.css";i:202;s:16:"image/editor.css";i:203;s:20:"image/editor.min.css";i:204;s:19:"image/style-rtl.css";i:205;s:23:"image/style-rtl.min.css";i:206;s:15:"image/style.css";i:207;s:19:"image/style.min.css";i:208;s:19:"image/theme-rtl.css";i:209;s:23:"image/theme-rtl.min.css";i:210;s:15:"image/theme.css";i:211;s:19:"image/theme.min.css";i:212;s:29:"latest-comments/style-rtl.css";i:213;s:33:"latest-comments/style-rtl.min.css";i:214;s:25:"latest-comments/style.css";i:215;s:29:"latest-comments/style.min.css";i:216;s:27:"latest-posts/editor-rtl.css";i:217;s:31:"latest-posts/editor-rtl.min.css";i:218;s:23:"latest-posts/editor.css";i:219;s:27:"latest-posts/editor.min.css";i:220;s:26:"latest-posts/style-rtl.css";i:221;s:30:"latest-posts/style-rtl.min.css";i:222;s:22:"latest-posts/style.css";i:223;s:26:"latest-posts/style.min.css";i:224;s:18:"list/style-rtl.css";i:225;s:22:"list/style-rtl.min.css";i:226;s:14:"list/style.css";i:227;s:18:"list/style.min.css";i:228;s:22:"loginout/style-rtl.css";i:229;s:26:"loginout/style-rtl.min.css";i:230;s:18:"loginout/style.css";i:231;s:22:"loginout/style.min.css";i:232;s:25:"media-text/editor-rtl.css";i:233;s:29:"media-text/editor-rtl.min.css";i:234;s:21:"media-text/editor.css";i:235;s:25:"media-text/editor.min.css";i:236;s:24:"media-text/style-rtl.css";i:237;s:28:"media-text/style-rtl.min.css";i:238;s:20:"media-text/style.css";i:239;s:24:"media-text/style.min.css";i:240;s:19:"more/editor-rtl.css";i:241;s:23:"more/editor-rtl.min.css";i:242;s:15:"more/editor.css";i:243;s:19:"more/editor.min.css";i:244;s:30:"navigation-link/editor-rtl.css";i:245;s:34:"navigation-link/editor-rtl.min.css";i:246;s:26:"navigation-link/editor.css";i:247;s:30:"navigation-link/editor.min.css";i:248;s:29:"navigation-link/style-rtl.css";i:249;s:33:"navigation-link/style-rtl.min.css";i:250;s:25:"navigation-link/style.css";i:251;s:29:"navigation-link/style.min.css";i:252;s:33:"navigation-submenu/editor-rtl.css";i:253;s:37:"navigation-submenu/editor-rtl.min.css";i:254;s:29:"navigation-submenu/editor.css";i:255;s:33:"navigation-submenu/editor.min.css";i:256;s:25:"navigation/editor-rtl.css";i:257;s:29:"navigation/editor-rtl.min.css";i:258;s:21:"navigation/editor.css";i:259;s:25:"navigation/editor.min.css";i:260;s:24:"navigation/style-rtl.css";i:261;s:28:"navigation/style-rtl.min.css";i:262;s:20:"navigation/style.css";i:263;s:24:"navigation/style.min.css";i:264;s:23:"nextpage/editor-rtl.css";i:265;s:27:"nextpage/editor-rtl.min.css";i:266;s:19:"nextpage/editor.css";i:267;s:23:"nextpage/editor.min.css";i:268;s:24:"page-list/editor-rtl.css";i:269;s:28:"page-list/editor-rtl.min.css";i:270;s:20:"page-list/editor.css";i:271;s:24:"page-list/editor.min.css";i:272;s:23:"page-list/style-rtl.css";i:273;s:27:"page-list/style-rtl.min.css";i:274;s:19:"page-list/style.css";i:275;s:23:"page-list/style.min.css";i:276;s:24:"paragraph/editor-rtl.css";i:277;s:28:"paragraph/editor-rtl.min.css";i:278;s:20:"paragraph/editor.css";i:279;s:24:"paragraph/editor.min.css";i:280;s:23:"paragraph/style-rtl.css";i:281;s:27:"paragraph/style-rtl.min.css";i:282;s:19:"paragraph/style.css";i:283;s:23:"paragraph/style.min.css";i:284;s:35:"post-author-biography/style-rtl.css";i:285;s:39:"post-author-biography/style-rtl.min.css";i:286;s:31:"post-author-biography/style.css";i:287;s:35:"post-author-biography/style.min.css";i:288;s:30:"post-author-name/style-rtl.css";i:289;s:34:"post-author-name/style-rtl.min.css";i:290;s:26:"post-author-name/style.css";i:291;s:30:"post-author-name/style.min.css";i:292;s:26:"post-author/editor-rtl.css";i:293;s:30:"post-author/editor-rtl.min.css";i:294;s:22:"post-author/editor.css";i:295;s:26:"post-author/editor.min.css";i:296;s:25:"post-author/style-rtl.css";i:297;s:29:"post-author/style-rtl.min.css";i:298;s:21:"post-author/style.css";i:299;s:25:"post-author/style.min.css";i:300;s:33:"post-comments-form/editor-rtl.css";i:301;s:37:"post-comments-form/editor-rtl.min.css";i:302;s:29:"post-comments-form/editor.css";i:303;s:33:"post-comments-form/editor.min.css";i:304;s:32:"post-comments-form/style-rtl.css";i:305;s:36:"post-comments-form/style-rtl.min.css";i:306;s:28:"post-comments-form/style.css";i:307;s:32:"post-comments-form/style.min.css";i:308;s:26:"post-content/style-rtl.css";i:309;s:30:"post-content/style-rtl.min.css";i:310;s:22:"post-content/style.css";i:311;s:26:"post-content/style.min.css";i:312;s:23:"post-date/style-rtl.css";i:313;s:27:"post-date/style-rtl.min.css";i:314;s:19:"post-date/style.css";i:315;s:23:"post-date/style.min.css";i:316;s:27:"post-excerpt/editor-rtl.css";i:317;s:31:"post-excerpt/editor-rtl.min.css";i:318;s:23:"post-excerpt/editor.css";i:319;s:27:"post-excerpt/editor.min.css";i:320;s:26:"post-excerpt/style-rtl.css";i:321;s:30:"post-excerpt/style-rtl.min.css";i:322;s:22:"post-excerpt/style.css";i:323;s:26:"post-excerpt/style.min.css";i:324;s:34:"post-featured-image/editor-rtl.css";i:325;s:38:"post-featured-image/editor-rtl.min.css";i:326;s:30:"post-featured-image/editor.css";i:327;s:34:"post-featured-image/editor.min.css";i:328;s:33:"post-featured-image/style-rtl.css";i:329;s:37:"post-featured-image/style-rtl.min.css";i:330;s:29:"post-featured-image/style.css";i:331;s:33:"post-featured-image/style.min.css";i:332;s:34:"post-navigation-link/style-rtl.css";i:333;s:38:"post-navigation-link/style-rtl.min.css";i:334;s:30:"post-navigation-link/style.css";i:335;s:34:"post-navigation-link/style.min.css";i:336;s:27:"post-template/style-rtl.css";i:337;s:31:"post-template/style-rtl.min.css";i:338;s:23:"post-template/style.css";i:339;s:27:"post-template/style.min.css";i:340;s:24:"post-terms/style-rtl.css";i:341;s:28:"post-terms/style-rtl.min.css";i:342;s:20:"post-terms/style.css";i:343;s:24:"post-terms/style.min.css";i:344;s:24:"post-title/style-rtl.css";i:345;s:28:"post-title/style-rtl.min.css";i:346;s:20:"post-title/style.css";i:347;s:24:"post-title/style.min.css";i:348;s:26:"preformatted/style-rtl.css";i:349;s:30:"preformatted/style-rtl.min.css";i:350;s:22:"preformatted/style.css";i:351;s:26:"preformatted/style.min.css";i:352;s:24:"pullquote/editor-rtl.css";i:353;s:28:"pullquote/editor-rtl.min.css";i:354;s:20:"pullquote/editor.css";i:355;s:24:"pullquote/editor.min.css";i:356;s:23:"pullquote/style-rtl.css";i:357;s:27:"pullquote/style-rtl.min.css";i:358;s:19:"pullquote/style.css";i:359;s:23:"pullquote/style.min.css";i:360;s:23:"pullquote/theme-rtl.css";i:361;s:27:"pullquote/theme-rtl.min.css";i:362;s:19:"pullquote/theme.css";i:363;s:23:"pullquote/theme.min.css";i:364;s:39:"query-pagination-numbers/editor-rtl.css";i:365;s:43:"query-pagination-numbers/editor-rtl.min.css";i:366;s:35:"query-pagination-numbers/editor.css";i:367;s:39:"query-pagination-numbers/editor.min.css";i:368;s:31:"query-pagination/editor-rtl.css";i:369;s:35:"query-pagination/editor-rtl.min.css";i:370;s:27:"query-pagination/editor.css";i:371;s:31:"query-pagination/editor.min.css";i:372;s:30:"query-pagination/style-rtl.css";i:373;s:34:"query-pagination/style-rtl.min.css";i:374;s:26:"query-pagination/style.css";i:375;s:30:"query-pagination/style.min.css";i:376;s:25:"query-title/style-rtl.css";i:377;s:29:"query-title/style-rtl.min.css";i:378;s:21:"query-title/style.css";i:379;s:25:"query-title/style.min.css";i:380;s:25:"query-total/style-rtl.css";i:381;s:29:"query-total/style-rtl.min.css";i:382;s:21:"query-total/style.css";i:383;s:25:"query-total/style.min.css";i:384;s:20:"query/editor-rtl.css";i:385;s:24:"query/editor-rtl.min.css";i:386;s:16:"query/editor.css";i:387;s:20:"query/editor.min.css";i:388;s:19:"quote/style-rtl.css";i:389;s:23:"quote/style-rtl.min.css";i:390;s:15:"quote/style.css";i:391;s:19:"quote/style.min.css";i:392;s:19:"quote/theme-rtl.css";i:393;s:23:"quote/theme-rtl.min.css";i:394;s:15:"quote/theme.css";i:395;s:19:"quote/theme.min.css";i:396;s:23:"read-more/style-rtl.css";i:397;s:27:"read-more/style-rtl.min.css";i:398;s:19:"read-more/style.css";i:399;s:23:"read-more/style.min.css";i:400;s:18:"rss/editor-rtl.css";i:401;s:22:"rss/editor-rtl.min.css";i:402;s:14:"rss/editor.css";i:403;s:18:"rss/editor.min.css";i:404;s:17:"rss/style-rtl.css";i:405;s:21:"rss/style-rtl.min.css";i:406;s:13:"rss/style.css";i:407;s:17:"rss/style.min.css";i:408;s:21:"search/editor-rtl.css";i:409;s:25:"search/editor-rtl.min.css";i:410;s:17:"search/editor.css";i:411;s:21:"search/editor.min.css";i:412;s:20:"search/style-rtl.css";i:413;s:24:"search/style-rtl.min.css";i:414;s:16:"search/style.css";i:415;s:20:"search/style.min.css";i:416;s:20:"search/theme-rtl.css";i:417;s:24:"search/theme-rtl.min.css";i:418;s:16:"search/theme.css";i:419;s:20:"search/theme.min.css";i:420;s:24:"separator/editor-rtl.css";i:421;s:28:"separator/editor-rtl.min.css";i:422;s:20:"separator/editor.css";i:423;s:24:"separator/editor.min.css";i:424;s:23:"separator/style-rtl.css";i:425;s:27:"separator/style-rtl.min.css";i:426;s:19:"separator/style.css";i:427;s:23:"separator/style.min.css";i:428;s:23:"separator/theme-rtl.css";i:429;s:27:"separator/theme-rtl.min.css";i:430;s:19:"separator/theme.css";i:431;s:23:"separator/theme.min.css";i:432;s:24:"shortcode/editor-rtl.css";i:433;s:28:"shortcode/editor-rtl.min.css";i:434;s:20:"shortcode/editor.css";i:435;s:24:"shortcode/editor.min.css";i:436;s:24:"site-logo/editor-rtl.css";i:437;s:28:"site-logo/editor-rtl.min.css";i:438;s:20:"site-logo/editor.css";i:439;s:24:"site-logo/editor.min.css";i:440;s:23:"site-logo/style-rtl.css";i:441;s:27:"site-logo/style-rtl.min.css";i:442;s:19:"site-logo/style.css";i:443;s:23:"site-logo/style.min.css";i:444;s:27:"site-tagline/editor-rtl.css";i:445;s:31:"site-tagline/editor-rtl.min.css";i:446;s:23:"site-tagline/editor.css";i:447;s:27:"site-tagline/editor.min.css";i:448;s:26:"site-tagline/style-rtl.css";i:449;s:30:"site-tagline/style-rtl.min.css";i:450;s:22:"site-tagline/style.css";i:451;s:26:"site-tagline/style.min.css";i:452;s:25:"site-title/editor-rtl.css";i:453;s:29:"site-title/editor-rtl.min.css";i:454;s:21:"site-title/editor.css";i:455;s:25:"site-title/editor.min.css";i:456;s:24:"site-title/style-rtl.css";i:457;s:28:"site-title/style-rtl.min.css";i:458;s:20:"site-title/style.css";i:459;s:24:"site-title/style.min.css";i:460;s:26:"social-link/editor-rtl.css";i:461;s:30:"social-link/editor-rtl.min.css";i:462;s:22:"social-link/editor.css";i:463;s:26:"social-link/editor.min.css";i:464;s:27:"social-links/editor-rtl.css";i:465;s:31:"social-links/editor-rtl.min.css";i:466;s:23:"social-links/editor.css";i:467;s:27:"social-links/editor.min.css";i:468;s:26:"social-links/style-rtl.css";i:469;s:30:"social-links/style-rtl.min.css";i:470;s:22:"social-links/style.css";i:471;s:26:"social-links/style.min.css";i:472;s:21:"spacer/editor-rtl.css";i:473;s:25:"spacer/editor-rtl.min.css";i:474;s:17:"spacer/editor.css";i:475;s:21:"spacer/editor.min.css";i:476;s:20:"spacer/style-rtl.css";i:477;s:24:"spacer/style-rtl.min.css";i:478;s:16:"spacer/style.css";i:479;s:20:"spacer/style.min.css";i:480;s:20:"table/editor-rtl.css";i:481;s:24:"table/editor-rtl.min.css";i:482;s:16:"table/editor.css";i:483;s:20:"table/editor.min.css";i:484;s:19:"table/style-rtl.css";i:485;s:23:"table/style-rtl.min.css";i:486;s:15:"table/style.css";i:487;s:19:"table/style.min.css";i:488;s:19:"table/theme-rtl.css";i:489;s:23:"table/theme-rtl.min.css";i:490;s:15:"table/theme.css";i:491;s:19:"table/theme.min.css";i:492;s:24:"tag-cloud/editor-rtl.css";i:493;s:28:"tag-cloud/editor-rtl.min.css";i:494;s:20:"tag-cloud/editor.css";i:495;s:24:"tag-cloud/editor.min.css";i:496;s:23:"tag-cloud/style-rtl.css";i:497;s:27:"tag-cloud/style-rtl.min.css";i:498;s:19:"tag-cloud/style.css";i:499;s:23:"tag-cloud/style.min.css";i:500;s:28:"template-part/editor-rtl.css";i:501;s:32:"template-part/editor-rtl.min.css";i:502;s:24:"template-part/editor.css";i:503;s:28:"template-part/editor.min.css";i:504;s:27:"template-part/theme-rtl.css";i:505;s:31:"template-part/theme-rtl.min.css";i:506;s:23:"template-part/theme.css";i:507;s:27:"template-part/theme.min.css";i:508;s:30:"term-description/style-rtl.css";i:509;s:34:"term-description/style-rtl.min.css";i:510;s:26:"term-description/style.css";i:511;s:30:"term-description/style.min.css";i:512;s:27:"text-columns/editor-rtl.css";i:513;s:31:"text-columns/editor-rtl.min.css";i:514;s:23:"text-columns/editor.css";i:515;s:27:"text-columns/editor.min.css";i:516;s:26:"text-columns/style-rtl.css";i:517;s:30:"text-columns/style-rtl.min.css";i:518;s:22:"text-columns/style.css";i:519;s:26:"text-columns/style.min.css";i:520;s:19:"verse/style-rtl.css";i:521;s:23:"verse/style-rtl.min.css";i:522;s:15:"verse/style.css";i:523;s:19:"verse/style.min.css";i:524;s:20:"video/editor-rtl.css";i:525;s:24:"video/editor-rtl.min.css";i:526;s:16:"video/editor.css";i:527;s:20:"video/editor.min.css";i:528;s:19:"video/style-rtl.css";i:529;s:23:"video/style-rtl.min.css";i:530;s:15:"video/style.css";i:531;s:19:"video/style.min.css";i:532;s:19:"video/theme-rtl.css";i:533;s:23:"video/theme-rtl.min.css";i:534;s:15:"video/theme.css";i:535;s:19:"video/theme.min.css";}}', 'on'),
(130, '_transient_wp_styles_for_blocks', 'a:2:{s:4:"hash";s:32:"1727c65ee0a5912cad27a6f0cb67cf05";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:0:"";s:12:"core/columns";s:0:"";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}', 'on'),
(131, '_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.8.3.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-6.8.3.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-6.8.3-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-6.8.3-new-bundled.zip";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"6.8.3";s:7:"version";s:5:"6.8.3";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:1763275805;s:15:"version_checked";s:5:"6.8.3";s:12:"translations";a:0:{}}', 'off'),
(135, 'loginizer_version', '2.0.3', 'auto'),
(136, 'loginizer_options', 'a:0:{}', 'auto'),
(137, 'loginizer_last_reset', '1763267898', 'auto'),
(138, 'loginizer_whitelist', 'a:0:{}', 'auto'),
(139, 'loginizer_blacklist', 'a:0:{}', 'auto'),
(140, 'loginizer_2fa_whitelist', 'a:0:{}', 'auto'),
(141, 'loginizer_ins_time', '1763181474', 'auto'),
(142, 'siteseo_toggle', 'a:6:{s:13:"toggle-titles";b:1;s:18:"toggle-xml-sitemap";b:1;s:23:"toggle-instant-indexing";b:1;s:15:"toggle-advanced";b:1;s:13:"toggle-social";b:1;s:23:"toggle-google-analytics";b:1;}', 'auto'),
(143, 'siteseo_titles_option_name', 'a:13:{s:10:"titles_sep";s:1:"-";s:22:"titles_home_site_title";s:13:"%%sitetitle%%";s:21:"titles_home_site_desc";s:11:"%%tagline%%";s:20:"titles_single_titles";a:2:{s:4:"post";a:2:{s:5:"title";s:36:"%%post_title%% %%sep%% %%sitetitle%%";s:11:"description";s:17:"%%post_excerpt%% ";}s:4:"page";a:2:{s:5:"title";s:36:"%%post_title%% %%sep%% %%sitetitle%%";s:11:"description";s:17:"%%post_excerpt%% ";}}s:17:"titles_tax_titles";a:3:{s:8:"category";a:2:{s:5:"title";s:41:"%%_category_title%% %%sep%% %%sitetitle%%";s:11:"description";s:25:"%%_category_description%%";}s:8:"post_tag";a:2:{s:5:"title";s:41:"%%_category_title%% %%sep%% %%sitetitle%%";s:11:"description";s:25:"%%_category_description%%";}s:11:"post_format";a:2:{s:5:"title";s:41:"%%_category_title%% %%sep%% %%sitetitle%%";s:11:"description";s:25:"%%_category_description%%";}}s:28:"titles_archives_author_title";s:37:"%%post_author%% %%sep%% %%sitetitle%%";s:30:"titles_archives_author_noindex";b:1;s:26:"titles_archives_date_title";s:38:"%%archive_date%% %%sep%% %%sitetitle%%";s:28:"titles_archives_date_noindex";b:1;s:36:"titles_archives_search_title_noindex";b:1;s:27:"titles_nositelinkssearchbox";b:1;s:28:"titles_archives_search_title";s:41:"%%search_keywords%% %%sep%% %%sitetitle%%";s:25:"titles_archives_404_title";s:42:"404 - Page not found %%sep%% %%sitetitle%%";}', 'auto'),
(144, 'siteseo_social_option_name', 'a:2:{s:19:"social_twitter_card";b:1;s:18:"social_facebook_og";b:1;}', 'auto'),
(145, 'siteseo_xml_sitemap_option_name', 'a:4:{s:26:"xml_sitemap_general_enable";b:1;s:27:"xml_sitemap_post_types_list";a:2:{s:4:"post";a:1:{s:7:"include";b:1;}s:4:"page";a:1:{s:7:"include";b:1;}}s:27:"xml_sitemap_taxonomies_list";a:1:{s:8:"category";a:1:{s:7:"include";b:1;}}s:22:"xml_sitemap_img_enable";b:1;}', 'auto'),
(146, 'siteseo_advanced_option_name', 'a:2:{s:20:"advanced_attachments";b:1;s:28:"appearance_universal_metabox";b:1;}', 'auto'),
(147, 'siteseo_version', '1.3.2', 'auto'),
(148, 'gosmtp_version', '1.1.5', 'auto'),
(149, 'backuply_version', '1.5.1', 'auto'),
(150, 'backuply_config_keys', 'a:1:{s:12:"BACKUPLY_KEY";s:64:"3a939e3d7ff17c7e26def809ff76a30315af5e6bb8f2a4fa00b5c255bafec258";}', 'auto'),
(151, 'pagelayer_version', '2.0.6', 'auto'),
(152, 'pagelayer_options', 'a:0:{}', 'auto'),
(153, 'speedycache_options', 'a:3:{s:3:"lbc";b:1;s:10:"minify_css";b:1;s:4:"gzip";b:1;}', 'auto'),
(154, 'speedycache_version', '1.3.6', 'auto'),
(155, 'cookieadmin_version', '1.1.3', 'auto'),
(161, 'pagelayer_promo_time', '1763267888', 'auto'),
(162, 'loginizer_promo_time', '1763181488', 'auto'),
(163, 'loginizer_backuply_promo_time', '1763181488', 'auto'),
(164, 'loginizer_csrf_promo_time', '1763181488', 'auto'),
(165, 'backuply_hide_trial', '1763181488', 'off'),
(166, 'backuply_backup_nag', '1762663088', 'off'),
(167, 'backuply_license_notice', '1763181488', 'auto'),
(168, 'backuply_hide_holiday', '1763181488', 'off'),
(169, 'backuply_promo_time', '1763181488', 'off'),
(170, 'backuply_offer_time', '1763181488', 'off'),
(171, '_site_transient_timeout_browser_2204ee63bef2f351470a66ffe1bb020e', '1763786288', 'off'),
(172, '_site_transient_browser_2204ee63bef2f351470a66ffe1bb020e', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:9:"141.0.0.0";s:8:"platform";s:7:"Windows";s:10:"update_url";s:29:"https://www.google.com/chrome";s:7:"img_src";s:43:"http://s.w.org/images/browsers/chrome.png?1";s:11:"img_src_ssl";s:44:"https://s.w.org/images/browsers/chrome.png?1";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}', 'off'),
(173, '_site_transient_timeout_php_check_5597bcc1d9eaf1647efae49ec9332e7c', '1763786288', 'off'),
(174, '_site_transient_php_check_5597bcc1d9eaf1647efae49ec9332e7c', 'a:5:{s:19:"recommended_version";s:3:"8.3";s:15:"minimum_version";s:6:"7.2.24";s:12:"is_supported";b:0;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}', 'off'),
(189, 'can_compress_scripts', '1', 'on'),
(192, 'jetbackup_config', 'nvtaJmqtWu0g2r97tHP6jw==|xPOEcyPHk3x5qQvIGKhEOXwpav1NDUGf4pbHIC3BosVY+VNBcZwbC8y1JZXAn3cQ0uX5MC6YXg4oRSef2oN16nhpCMWRk3VGfEqHaYJoDPybWRQXKBDR0eqNC+LlWH2nCbVFMtsFX84LeguvlLqkwTQcKZic4R+ulH93vGbTBtCjVQeAFlhaTYCJ0iubXMPhonQICoxys/TmbeaMegKjyVgftvS8LbLOBrCvyyuhPhpN2alBhafLWmo0/oNz+JxSLZGff8KSVavTMfsVWT43jWsVaodDJopOobC4cpwgFMukPOkzwLh5RS9Zw5uDtlRV0cDZ25hGlvwrGykDljlBzvYoIV2ubiUvIiDF/4EnOUVf0AsVlsYa2Q65a6YI26cZsIqvV684lMVYXz41KohOwjphzI5IG17UROg/3iFok6eQ7VQjAclzjbKRF1EnKjsrWbWda8H7NaWcb9d+sNvCgtb3yxULF5+8VI3okiFgco9gGnb5EctG/19y7/MZ9stUJJ307mXeV+JmSIymIiTbLQvk4cktLY/GI3xGY1mKylbULYGR6EBDinGBJ7x+t6V/hFQl+9WNIJhEzI+noD5wc1HGcAPLjh02f1Zs6fMxH6YzT0Lc+OmAvcuXRQ9LCPGpP5QwZjr1JCJVpl85WyBAw+P4hJDV4NMmP77F6rP3Lh0LtDZQYd159Ve5JJBWPBq5gMOlOSL/+ow16OKqNadqNaezbO6FuASN8d5synHao9ubW9Td0O3TtXW5wOz1J0iZkOIKqgBsN6cyqpeZ4H3bN7Lx4WJ6sqf/ExNg5tmoY0LU5gzYRetF/81wnbrgNZBXmwSyXy0zMi6Roa03cPP5QR/142HvmUYvvnhiAZ4EMpkJb1vFOVgvAmyIO6TMd6/y|v2', 'auto'),
(196, 'finished_updating_comment_type', '1', 'auto'),
(201, 'current_theme', 'Astra', 'auto'),
(202, 'theme_mods_astra', 'a:4:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:7:"primary";i:3;s:11:"mobile_menu";i:3;}s:18:"custom_css_post_id";i:25;s:11:"custom_logo";i:7;}', 'on'),
(203, 'theme_switched', '', 'auto'),
(206, 'astra-settings', 'a:2270:{s:17:"blog-single-width";s:7:"default";s:21:"blog-single-max-width";i:1200;s:17:"page-single-width";s:7:"default";s:21:"page-single-max-width";i:1200;s:28:"single-content-images-shadow";b:0;s:30:"single-post-ast-content-layout";s:22:"narrow-width-container";s:25:"single-post-sidebar-style";s:7:"unboxed";s:36:"ast-dynamic-single-post-elements-gap";i:25;s:38:"ast-dynamic-single-post-meta-font-size";a:6:{s:7:"desktop";i:13;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:40:"ast-dynamic-single-post-meta-font-weight";s:3:"600";s:32:"ast-dynamic-single-post-metadata";a:2:{i:0;s:6:"author";i:1;s:4:"date";}s:35:"section-search-page-title-structure";a:2:{i:0;s:31:"section-search-page-title-title";i:1;s:36:"section-search-page-title-breadcrumb";}s:38:"section-search-page-title-custom-title";s:19:"Search Results for:";s:50:"section-search-page-title-found-custom-description";s:44:"Here are the search results for your search.";s:54:"section-search-page-title-not-found-custom-description";s:85:"Sorry, but we could not find anything related to your search terms. Please try again.";s:43:"section-search-page-title-title-font-weight";s:3:"600";s:41:"section-search-page-title-title-font-size";a:6:{s:7:"desktop";i:32;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"ast-search-results-per-page";i:10;s:46:"section-search-page-title-horizontal-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:22:"ast-search-live-search";b:0;s:33:"ast-search-live-search-post-types";a:2:{s:4:"post";i:1;s:4:"page";i:1;}s:19:"blog-post-structure";a:5:{i:0;s:5:"image";i:1;s:5:"title";i:2;s:10:"title-meta";i:3;s:7:"excerpt";i:4;s:9:"read-more";}s:18:"blog-post-per-page";i:10;s:17:"blog-hover-effect";s:7:"zoom-in";s:11:"blog-layout";s:13:"blog-layout-4";s:10:"blog-width";s:7:"default";s:19:"blog-meta-date-type";s:9:"published";s:21:"blog-meta-date-format";s:0:"";s:14:"blog-max-width";i:1200;s:17:"blog-post-content";s:7:"excerpt";s:9:"blog-meta";a:1:{i:0;s:4:"date";}s:23:"post-card-border-radius";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"post-card-featured-overlay";s:0:"";s:19:"blog-category-style";s:7:"default";s:14:"blog-tag-style";s:7:"default";s:27:"blog-post-meta-divider-type";s:1:"/";s:24:"blog-meta-category-style";s:7:"default";s:19:"blog-meta-tag-style";s:7:"default";s:21:"blog-image-ratio-type";s:6:"custom";s:26:"blog-image-ratio-pre-scale";s:3:"4/3";s:29:"blog-image-custom-scale-width";i:4;s:30:"blog-image-custom-scale-height";i:3;s:10:"text-color";s:25:"var(--ast-global-color-3)";s:10:"link-color";s:25:"var(--ast-global-color-0)";s:11:"theme-color";s:25:"var(--ast-global-color-0)";s:12:"link-h-color";s:25:"var(--ast-global-color-1)";s:18:"heading-base-color";s:25:"var(--ast-global-color-2)";s:12:"border-color";s:25:"var(--ast-global-color-6)";s:13:"footer-bg-obj";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:12:"footer-color";s:0:"";s:17:"footer-link-color";s:0:"";s:19:"footer-link-h-color";s:0:"";s:17:"footer-adv-bg-obj";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:21:"footer-adv-text-color";s:0:"";s:21:"footer-adv-link-color";s:0:"";s:23:"footer-adv-link-h-color";s:0:"";s:26:"footer-adv-wgt-title-color";s:0:"";s:12:"button-color";s:25:"var(--ast-global-color-4)";s:14:"button-h-color";s:25:"var(--ast-global-color-4)";s:15:"button-bg-color";s:25:"var(--ast-global-color-0)";s:17:"button-bg-h-color";s:25:"var(--ast-global-color-1)";s:27:"secondary-button-bg-h-color";s:7:"#ffffff";s:25:"secondary-button-bg-color";s:0:"";s:22:"secondary-button-color";s:7:"#ffffff";s:24:"secondary-button-h-color";s:25:"var(--ast-global-color-4)";s:20:"theme-button-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"36";s:6:"bottom";s:2:"16";s:4:"left";s:2:"36";}s:6:"tablet";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"32";s:6:"bottom";s:2:"16";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"14";s:5:"right";s:2:"28";s:6:"bottom";s:2:"14";s:4:"left";s:2:"28";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"secondary-theme-button-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"36";s:6:"bottom";s:2:"16";s:4:"left";s:2:"36";}s:6:"tablet";a:4:{s:3:"top";s:2:"18";s:5:"right";s:2:"32";s:6:"bottom";s:2:"18";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"15";s:5:"right";s:2:"28";s:6:"bottom";s:2:"15";s:4:"left";s:2:"28";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"button-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"secondary-button-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"theme-button-border-group-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:47:"secondary-theme-button-border-group-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:17:"footer-sml-layout";s:19:"footer-sml-layout-1";s:20:"footer-sml-section-1";s:6:"custom";s:27:"footer-sml-section-1-credit";s:68:"Copyright © [current_year] [site_title] | Powered by [theme_author]";s:20:"footer-sml-section-2";s:0:"";s:27:"footer-sml-section-2-credit";s:68:"Copyright © [current_year] [site_title] | Powered by [theme_author]";s:27:"footer-sml-dist-equal-align";b:1;s:18:"footer-sml-divider";i:1;s:24:"footer-sml-divider-color";s:7:"#7a7a7a";s:19:"footer-layout-width";s:7:"content";s:22:"ast-header-retina-logo";s:112:"https://novationinteriors.com/wp/wp-content/uploads/2025/11/320612318_3296170487264397_8587241604754344168_n.jpg";s:17:"use-logo-svg-icon";b:0;s:13:"logo-svg-icon";a:2:{s:4:"type";s:0:"";s:5:"value";s:0:"";}s:23:"logo-svg-site-title-gap";a:3:{s:7:"desktop";s:1:"5";s:6:"tablet";s:1:"5";s:6:"mobile";s:1:"5";}s:21:"ast-header-logo-width";s:0:"";s:32:"ast-header-responsive-logo-width";a:3:{s:7:"desktop";s:2:"50";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-color-site-title";s:25:"var(--ast-global-color-2)";s:25:"header-color-h-site-title";s:25:"var(--ast-global-color-2)";s:25:"header-color-site-tagline";s:0:"";s:29:"display-site-title-responsive";a:3:{s:7:"desktop";b:1;s:6:"tablet";b:1;s:6:"mobile";b:1;}s:31:"display-site-tagline-responsive";a:3:{s:7:"desktop";b:0;s:6:"tablet";i:0;s:6:"mobile";i:0;}s:17:"logo-title-inline";b:1;s:19:"disable-primary-nav";b:0;s:14:"header-layouts";s:20:"header-main-layout-1";s:22:"header-main-rt-section";s:4:"none";s:27:"header-display-outside-menu";b:0;s:27:"header-main-rt-section-html";s:27:"<button>Contact Us</button>";s:34:"header-main-rt-section-button-text";s:6:"Button";s:34:"header-main-rt-section-button-link";s:23:"https://www.wpastra.com";s:41:"header-main-rt-section-button-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:35:"header-main-rt-section-button-style";s:12:"theme-button";s:40:"header-main-rt-section-button-text-color";s:0:"";s:40:"header-main-rt-section-button-back-color";s:0:"";s:42:"header-main-rt-section-button-text-h-color";s:0:"";s:42:"header-main-rt-section-button-back-h-color";s:0:"";s:37:"header-main-rt-section-button-padding";a:3:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}}s:41:"header-main-rt-section-button-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:15:"header-main-sep";i:1;s:21:"header-main-sep-color";s:0:"";s:24:"header-main-layout-width";s:7:"content";s:22:"primary-submenu-border";a:4:{s:3:"top";s:1:"2";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:27:"primary-submenu-item-border";b:0;s:23:"primary-submenu-b-color";s:0:"";s:28:"primary-submenu-item-b-color";s:0:"";s:33:"primary-header-button-font-family";s:7:"inherit";s:33:"primary-header-button-font-weight";s:7:"inherit";s:31:"primary-header-button-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"primary-header-button-text-transform";s:0:"";s:33:"primary-header-button-line-height";i:1;s:36:"primary-header-button-letter-spacing";s:0:"";s:22:"header-main-menu-label";s:0:"";s:22:"header-main-menu-align";s:6:"inline";s:39:"header-main-submenu-container-animation";s:0:"";s:24:"mobile-header-breakpoint";s:0:"";s:18:"mobile-header-logo";s:0:"";s:24:"mobile-header-logo-width";s:0:"";s:11:"site-layout";s:21:"ast-full-width-layout";s:18:"site-content-width";i:1200;s:26:"narrow-container-max-width";i:750;s:37:"site-layout-outside-bg-obj-responsive";a:3:{s:7:"desktop";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"tablet";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"mobile";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}}s:25:"content-bg-obj-responsive";a:3:{s:7:"desktop";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}s:6:"tablet";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}s:6:"mobile";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}}s:12:"wp-blocks-ui";s:6:"custom";s:24:"wp-blocks-global-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:3:"100";s:5:"right";s:2:"80";s:6:"bottom";s:3:"100";s:4:"left";s:2:"80";}s:6:"tablet";a:4:{s:3:"top";s:2:"50";s:5:"right";s:2:"50";s:6:"bottom";s:2:"50";s:4:"left";s:2:"50";}s:6:"mobile";a:4:{s:3:"top";s:2:"50";s:5:"right";s:2:"30";s:6:"bottom";s:2:"50";s:4:"left";s:2:"30";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"enable-comments-area";b:1;s:22:"comments-box-placement";s:0:"";s:21:"comment-form-position";s:5:"below";s:28:"comments-box-container-width";s:0:"";s:31:"ast-sub-section-comments-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:32:"ast-sub-section-comments-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"2";s:5:"right";s:0:"";s:6:"bottom";s:1:"3";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:30:"single-page-ast-content-layout";s:22:"normal-width-container";s:25:"single-page-content-style";s:7:"unboxed";s:25:"single-post-content-style";s:5:"boxed";s:31:"archive-post-ast-content-layout";s:22:"normal-width-container";s:23:"ast-site-content-layout";s:22:"normal-width-container";s:18:"site-content-style";s:5:"boxed";s:16:"body-font-family";s:31:"''Plus Jakarta Sans'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";i:400;s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-font-extras";a:6:{s:11:"line-height";s:3:"1.7";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:20:"headings-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:18:"para-margin-bottom";s:0:"";s:23:"underline-content-links";b:1;s:25:"site-accessibility-toggle";b:1;s:33:"site-accessibility-highlight-type";s:6:"dotted";s:39:"site-accessibility-highlight-input-type";s:7:"disable";s:19:"body-text-transform";s:0:"";s:20:"headings-font-family";s:21:"''Crimson Text'', serif";s:20:"headings-font-weight";i:600;s:20:"font-size-site-title";a:6:{s:7:"desktop";i:22;s:6:"tablet";i:20;s:6:"mobile";i:18;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"font-size-site-tagline";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"single-post-outside-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:2:"40";s:5:"right";s:1:"0";s:6:"bottom";s:2:"20";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:2:"30";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"font-size-page-title";a:6:{s:7:"desktop";i:22;s:6:"tablet";i:22;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:18:"font-size-post-tax";a:6:{s:7:"desktop";i:14;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"font-size-post-meta";a:6:{s:7:"desktop";i:13;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h1";a:6:{s:7:"desktop";i:56;s:6:"tablet";i:52;s:6:"mobile";i:35;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h2";a:6:{s:7:"desktop";i:40;s:6:"tablet";i:36;s:6:"mobile";i:30;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h3";a:6:{s:7:"desktop";i:23;s:6:"tablet";i:24;s:6:"mobile";i:22;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h4";a:6:{s:7:"desktop";i:21;s:6:"tablet";i:20;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h5";a:6:{s:7:"desktop";i:18;s:6:"tablet";i:17;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h6";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"site-sidebar-layout";s:10:"no-sidebar";s:18:"site-sidebar-width";i:30;s:26:"single-page-sidebar-layout";s:10:"no-sidebar";s:26:"single-post-sidebar-layout";s:10:"no-sidebar";s:27:"archive-post-sidebar-layout";s:10:"no-sidebar";s:19:"site-sticky-sidebar";b:0;s:18:"site-sidebar-style";s:7:"unboxed";s:25:"single-page-sidebar-style";s:7:"unboxed";s:26:"archive-post-sidebar-style";s:7:"unboxed";s:10:"footer-adv";s:8:"disabled";s:23:"footer-adv-border-width";s:0:"";s:23:"footer-adv-border-color";s:7:"#7a7a7a";s:30:"mobile-header-toggle-btn-style";s:7:"outline";s:23:"hide-custom-menu-mobile";i:1;s:27:"mobile-header-toggle-target";s:4:"icon";s:19:"enable-scroll-to-id";b:1;s:37:"ast-dynamic-single-download-structure";a:3:{i:0;s:33:"ast-dynamic-single-download-title";i:1;s:32:"ast-dynamic-single-download-meta";i:2;s:33:"ast-dynamic-single-download-image";}s:20:"enable-related-posts";b:1;s:19:"related-posts-title";s:13:"Related Posts";s:29:"releted-posts-title-alignment";s:4:"left";s:25:"related-posts-total-count";i:2;s:28:"enable-related-posts-excerpt";b:0;s:27:"related-posts-box-placement";s:7:"default";s:30:"related-posts-outside-location";s:5:"above";s:29:"related-posts-container-width";s:0:"";s:27:"related-posts-excerpt-count";i:25;s:22:"related-posts-based-on";s:10:"categories";s:22:"related-posts-order-by";s:4:"date";s:19:"related-posts-order";s:3:"asc";s:29:"related-posts-grid-responsive";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}s:23:"related-posts-structure";a:2:{i:0;s:14:"featured-image";i:1;s:10:"title-meta";}s:23:"related-posts-tag-style";s:4:"none";s:28:"related-posts-category-style";s:4:"none";s:25:"related-posts-date-format";s:0:"";s:28:"related-posts-meta-date-type";s:9:"published";s:32:"related-posts-author-avatar-size";s:0:"";s:27:"related-posts-author-avatar";b:0;s:33:"related-posts-author-prefix-label";s:3:"By ";s:24:"related-posts-image-size";s:4:"full";s:38:"related-posts-image-custom-scale-width";i:4;s:39:"related-posts-image-custom-scale-height";i:3;s:35:"related-posts-image-ratio-pre-scale";s:4:"16/9";s:30:"related-posts-image-ratio-type";s:6:"custom";s:28:"related-posts-meta-structure";a:2:{i:0;s:8:"category";i:1;s:4:"date";}s:24:"related-posts-text-color";s:25:"var(--ast-global-color-3)";s:24:"related-posts-link-color";s:0:"";s:25:"related-posts-title-color";s:25:"var(--ast-global-color-2)";s:30:"related-posts-background-color";s:0:"";s:24:"related-posts-meta-color";s:0:"";s:30:"related-posts-link-hover-color";s:0:"";s:35:"related-posts-meta-link-hover-color";s:0:"";s:39:"related-posts-section-title-font-family";s:7:"inherit";s:39:"related-posts-section-title-font-weight";s:7:"inherit";s:42:"related-posts-section-title-text-transform";s:0:"";s:39:"related-posts-section-title-line-height";s:0:"";s:39:"related-posts-section-title-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:37:"related-posts-section-title-font-size";a:6:{s:7:"desktop";i:26;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"related-posts-title-font-family";s:7:"inherit";s:31:"related-posts-title-font-weight";s:7:"inherit";s:34:"related-posts-title-text-transform";s:0:"";s:31:"related-posts-title-line-height";s:1:"1";s:29:"related-posts-title-font-size";a:6:{s:7:"desktop";i:20;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"related-posts-title-font-extras";a:6:{s:11:"line-height";s:1:"1";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:30:"related-posts-meta-font-family";s:7:"inherit";s:30:"related-posts-meta-font-weight";s:7:"inherit";s:33:"related-posts-meta-text-transform";s:0:"";s:30:"related-posts-meta-line-height";s:0:"";s:28:"related-posts-meta-font-size";a:6:{s:7:"desktop";s:2:"14";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"related-posts-meta-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"related-posts-content-font-family";s:7:"inherit";s:33:"related-posts-content-font-weight";s:7:"inherit";s:33:"related-posts-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:31:"related-posts-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"ast-sub-section-related-posts-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";d:2.5;s:5:"right";d:2.5;s:6:"bottom";d:2.5;s:4:"left";d:2.5;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:36:"ast-sub-section-related-posts-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";i:2;s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:23:"transparent-header-logo";s:0:"";s:30:"transparent-header-retina-logo";s:112:"https://novationinteriors.com/wp/wp-content/uploads/2025/11/320612318_3296170487264397_8587241604754344168_n.jpg";s:26:"different-transparent-logo";i:0;s:33:"different-transparent-retina-logo";i:0;s:29:"transparent-header-logo-width";a:3:{s:7:"desktop";i:150;s:6:"tablet";i:120;s:6:"mobile";i:100;}s:25:"transparent-header-enable";b:0;s:34:"transparent-header-disable-archive";b:1;s:45:"transparent-header-disable-latest-posts-index";i:1;s:29:"transparent-header-on-devices";s:4:"both";s:27:"transparent-header-main-sep";i:1;s:33:"transparent-header-main-sep-color";s:25:"var(--ast-global-color-6)";s:27:"transparent-header-bg-color";s:0:"";s:35:"transparent-header-color-site-title";s:0:"";s:37:"transparent-header-color-h-site-title";s:0:"";s:25:"transparent-menu-bg-color";s:0:"";s:22:"transparent-menu-color";s:0:"";s:24:"transparent-menu-h-color";s:0:"";s:28:"transparent-submenu-bg-color";s:0:"";s:25:"transparent-submenu-color";s:0:"";s:27:"transparent-submenu-h-color";s:0:"";s:29:"transparent-header-logo-color";s:0:"";s:38:"transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"hba-transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"hbb-transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:46:"transparent-header-color-site-title-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:48:"transparent-header-color-h-site-title-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"transparent-menu-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"transparent-menu-color-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:35:"transparent-menu-h-color-responsive";a:3:{s:7:"desktop";s:21:"rgba(255,255,255,0.8)";s:6:"tablet";s:25:"var(--ast-global-color-0)";s:6:"mobile";s:0:"";}s:39:"transparent-submenu-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"transparent-submenu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:38:"transparent-submenu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:49:"transparent-content-section-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:49:"transparent-content-section-link-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:51:"transparent-content-section-link-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"breadcrumb-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"breadcrumb-active-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"breadcrumb-hover-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"breadcrumb-separator-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:19:"breadcrumb-bg-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:18:"breadcrumb-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"breadcrumb-font-family";s:7:"inherit";s:22:"breadcrumb-font-weight";s:7:"inherit";s:20:"breadcrumb-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"breadcrumb-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:29:"breadcrumb-separator-selector";s:5:"\\003E";s:20:"breadcrumb-separator";s:5:"\\00bb";s:20:"scroll-to-top-enable";b:1;s:23:"scroll-to-top-icon-size";i:15;s:27:"scroll-to-top-icon-position";s:5:"right";s:24:"scroll-to-top-on-devices";s:4:"both";s:32:"scroll-to-top-icon-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"scroll-to-top-icon-color";s:25:"var(--ast-global-color-4)";s:26:"scroll-to-top-icon-h-color";s:25:"var(--ast-global-color-4)";s:27:"scroll-to-top-icon-bg-color";s:25:"var(--ast-global-color-0)";s:29:"scroll-to-top-icon-h-bg-color";s:25:"var(--ast-global-color-0)";s:8:"h1-color";s:0:"";s:8:"h2-color";s:0:"";s:8:"h3-color";s:0:"";s:8:"h4-color";s:0:"";s:8:"h5-color";s:0:"";s:8:"h6-color";s:0:"";s:14:"font-family-h1";s:7:"inherit";s:14:"font-weight-h1";s:7:"inherit";s:14:"font-extras-h1";a:6:{s:11:"line-height";s:3:"1.2";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h2";s:7:"inherit";s:14:"font-weight-h2";s:7:"inherit";s:14:"font-extras-h2";a:6:{s:11:"line-height";s:3:"1.3";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h3";s:7:"inherit";s:14:"font-weight-h3";s:7:"inherit";s:14:"font-extras-h3";a:6:{s:11:"line-height";s:3:"1.3";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h4";s:7:"inherit";s:14:"font-weight-h4";s:7:"inherit";s:14:"font-extras-h4";a:6:{s:11:"line-height";s:4:"1.25";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h5";s:7:"inherit";s:14:"font-weight-h5";s:7:"inherit";s:14:"font-extras-h5";a:6:{s:11:"line-height";s:3:"1.6";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h6";s:20:"''Outfit'', sans-serif";s:14:"font-weight-h6";s:3:"600";s:14:"font-extras-h6";a:6:{s:11:"line-height";s:3:"1.6";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:1:"2";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:18:"font-weight-button";s:3:"700";s:28:"secondary-font-weight-button";s:3:"700";s:18:"font-family-button";s:7:"inherit";s:28:"secondary-font-family-button";s:7:"inherit";s:16:"font-size-button";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"secondary-font-size-button";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:18:"font-extras-button";a:6:{s:11:"line-height";i:1;s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:28:"secondary-font-extras-button";a:6:{s:11:"line-height";i:1;s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:20:"header-desktop-items";a:5:{s:5:"popup";a:1:{s:13:"popup_content";a:1:{i:0;s:11:"mobile-menu";}}s:5:"above";a:5:{s:10:"above_left";a:0:{}s:17:"above_left_center";a:0:{}s:12:"above_center";a:0:{}s:18:"above_right_center";a:0:{}s:11:"above_right";a:0:{}}s:7:"primary";a:5:{s:12:"primary_left";a:1:{i:0;s:4:"logo";}s:19:"primary_left_center";a:0:{}s:14:"primary_center";a:1:{i:0;s:6:"menu-1";}s:20:"primary_right_center";a:0:{}s:13:"primary_right";a:1:{i:0;s:8:"button-1";}}s:5:"below";a:5:{s:10:"below_left";a:0:{}s:17:"below_left_center";a:0:{}s:12:"below_center";a:0:{}s:18:"below_right_center";a:0:{}s:11:"below_right";a:0:{}}s:4:"flag";b:1;}s:19:"header-mobile-items";a:5:{s:5:"popup";a:1:{s:13:"popup_content";a:1:{i:0;s:11:"mobile-menu";}}s:5:"above";a:3:{s:10:"above_left";a:0:{}s:12:"above_center";a:0:{}s:11:"above_right";a:0:{}}s:7:"primary";a:3:{s:12:"primary_left";a:1:{i:0;s:4:"logo";}s:14:"primary_center";a:0:{}s:13:"primary_right";a:1:{i:0;s:14:"mobile-trigger";}}s:5:"below";a:3:{s:10:"below_left";a:0:{}s:12:"below_center";a:0:{}s:11:"below_right";a:0:{}}s:4:"flag";b:0;}s:27:"hb-header-main-layout-width";s:7:"content";s:16:"hb-header-height";a:3:{s:7:"desktop";i:100;s:6:"tablet";i:90;s:6:"mobile";i:80;}s:8:"hb-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:18:"hb-header-main-sep";i:0;s:24:"hb-header-main-sep-color";s:7:"#eaeaea";s:25:"hb-header-main-menu-align";s:6:"inline";s:27:"hb-header-bg-obj-responsive";a:3:{s:7:"desktop";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:17:"hb-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:3:"1.5";s:5:"right";s:0:"";s:6:"bottom";s:3:"1.5";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:1:"1";s:5:"right";s:0:"";s:6:"bottom";s:1:"1";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:17:"hba-header-layout";s:21:"above-header-layout-1";s:17:"hba-header-height";a:3:{s:7:"desktop";i:50;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:9:"hba-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:20:"hba-header-separator";i:1;s:30:"hba-header-bottom-border-color";s:7:"#eaeaea";s:28:"hba-header-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#ffffff";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:32:"hba-header-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"hba-header-link-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"hba-header-link-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:18:"hba-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:0:"";s:6:"bottom";s:1:"0";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:3:"0.5";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"em";}s:17:"hbb-header-layout";s:21:"below-header-layout-1";s:17:"hbb-header-height";a:3:{s:7:"desktop";i:60;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:9:"hbb-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:20:"hbb-header-separator";i:1;s:30:"hbb-header-bottom-border-color";s:7:"#eaeaea";s:28:"hbb-header-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#eeeeee";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:18:"hbb-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"1";s:5:"right";s:0:"";s:6:"bottom";s:1:"1";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"px";}s:37:"section-footer-builder-layout-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-footer-builder-layout-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-above-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-above-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-below-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-below-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-header-mobile-trigger-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"section-primary-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"40";s:6:"bottom";s:0:"";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"32";s:6:"bottom";s:0:"";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"24";s:6:"bottom";s:0:"";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"section-primary-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"title_tagline-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"section-header-search-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-account-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-mobile-menu-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"5";s:5:"right";s:2:"32";s:6:"bottom";s:1:"5";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:1:"5";s:5:"right";s:2:"24";s:6:"bottom";s:1:"5";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:33:"section-header-mobile-menu-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-above-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-above-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-below-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"section-footer-copyright-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-footer-menu-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"section-primary-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"section-primary-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"section-header-woo-cart-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"section-header-woo-cart-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button1-text";s:11:"Get Started";s:26:"header-button1-link-option";a:3:{s:3:"url";s:9:"/contact/";s:7:"new_tab";s:0:"";s:8:"link_rel";s:0:"";}s:26:"header-button1-font-family";s:7:"inherit";s:26:"header-button1-font-weight";s:7:"inherit";s:26:"header-button1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button1-text-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button1-back-color";a:3:{s:7:"desktop";s:18:"rgba(255,220,46,0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button1-text-h-color";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-7)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button1-back-h-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button1-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:27:"header-button1-border-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button1-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button1-border-radius";s:0:"";s:27:"section-hb-button-1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button1-text";s:6:"Button";s:26:"footer-button1-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button1-font-family";s:7:"inherit";s:26:"footer-button1-font-weight";s:7:"inherit";s:29:"footer-button1-text-transform";s:0:"";s:26:"footer-button1-line-height";s:0:"";s:24:"footer-button1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button1-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button1-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button1-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button1-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button1-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button1-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button1-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-1-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-1";s:22:"Insert HTML text here.";s:18:"header-html-1color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-1link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-1link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-1";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-1";s:7:"inherit";s:29:"font-family-section-hb-html-1";s:7:"inherit";s:29:"font-extras-section-hb-html-1";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-1";s:22:"Insert HTML text here.";s:18:"footer-html-1color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-1link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-1link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-1-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-1";s:7:"inherit";s:29:"font-family-section-fb-html-1";s:7:"inherit";s:29:"font-extras-section-fb-html-1";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-1-space";a:3:{s:7:"desktop";i:25;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-1-bg-space";s:0:"";s:20:"header-social-1-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-1-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-1-color";a:1:{s:7:"desktop";s:25:"var(--ast-global-color-4)";}s:23:"header-social-1-h-color";a:1:{s:7:"desktop";s:25:"var(--ast-global-color-4)";}s:24:"header-social-1-bg-color";s:0:"";s:26:"header-social-1-bg-h-color";s:0:"";s:28:"header-social-1-label-toggle";b:0;s:26:"header-social-1-color-type";s:6:"custom";s:34:"header-social-1-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-1";a:2:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:16:"instagram-square";s:5:"label";s:9:"Instagram";}i:1;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:14:"facebook-round";s:5:"label";s:8:"Facebook";}i:2;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}}s:4:"flag";b:1;}s:32:"section-hb-social-icons-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-1-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-1-bg-space";s:0:"";s:20:"footer-social-1-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-1-radius";s:0:"";s:21:"footer-social-1-color";s:0:"";s:23:"footer-social-1-h-color";s:0:"";s:24:"footer-social-1-bg-color";s:0:"";s:26:"footer-social-1-bg-h-color";s:0:"";s:28:"footer-social-1-label-toggle";b:0;s:26:"footer-social-1-color-type";s:6:"custom";s:27:"footer-social-1-brand-color";s:0:"";s:33:"footer-social-1-brand-label-color";s:0:"";s:34:"footer-social-1-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-1";a:2:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:10:"facebook-f";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}s:4:"flag";b:0;}s:25:"footer-social-1-alignment";a:3:{s:7:"desktop";s:5:"right";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-1-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-1-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-1-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-1-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-1-font-family";s:7:"inherit";s:27:"header-widget-1-font-weight";s:7:"inherit";s:25:"header-widget-1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-1-content-font-family";s:7:"inherit";s:35:"header-widget-1-content-font-weight";s:7:"inherit";s:33:"header-widget-1-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-1-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-1-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-1-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-1-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-1-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-1-font-family";s:7:"inherit";s:27:"footer-widget-1-font-weight";s:7:"inherit";s:30:"footer-widget-1-text-transform";s:0:"";s:27:"footer-widget-1-line-height";s:0:"";s:25:"footer-widget-1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-1-content-font-family";s:7:"inherit";s:35:"footer-widget-1-content-font-weight";s:7:"inherit";s:35:"footer-widget-1-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-1-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-1";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu1-bg-color";s:0:"";s:18:"header-menu1-color";s:0:"";s:23:"header-menu1-h-bg-color";s:0:"";s:20:"header-menu1-h-color";s:0:"";s:23:"header-menu1-a-bg-color";s:0:"";s:20:"header-menu1-a-color";s:0:"";s:30:"header-menu1-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu1-color-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu1-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu1-h-color-responsive";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu1-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu1-a-color-responsive";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu1-menu-hover-animation";s:0:"";s:40:"header-menu1-submenu-container-animation";s:0:"";s:24:"section-hb-menu-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu1-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:2:"15";s:6:"bottom";s:1:"0";s:4:"left";s:2:"15";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu1-submenu-item-border";b:0;s:32:"header-menu1-submenu-item-b-size";s:1:"1";s:33:"header-menu1-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu1-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu1-submenu-top-offset";s:0:"";s:26:"header-menu1-submenu-width";s:0:"";s:27:"header-menu1-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu1-menu-stack-on-mobile";b:1;s:22:"header-menu1-font-size";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu1-font-weight";s:3:"600";s:24:"header-menu1-font-family";s:7:"inherit";s:24:"header-menu1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button2-text";s:6:"Button";s:26:"header-button2-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button2-font-family";s:7:"inherit";s:26:"header-button2-font-weight";s:7:"inherit";s:26:"header-button2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button2-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button2-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button2-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button2-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button2-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button2-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button2-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button2-border-radius";s:0:"";s:27:"section-hb-button-2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button2-text";s:6:"Button";s:26:"footer-button2-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button2-font-family";s:7:"inherit";s:26:"footer-button2-font-weight";s:7:"inherit";s:29:"footer-button2-text-transform";s:0:"";s:26:"footer-button2-line-height";s:0:"";s:24:"footer-button2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button2-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button2-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button2-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button2-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button2-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button2-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button2-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-2";s:22:"Insert HTML text here.";s:18:"header-html-2color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-2link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-2link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-2";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-2";s:7:"inherit";s:29:"font-family-section-hb-html-2";s:7:"inherit";s:29:"font-extras-section-hb-html-2";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-2";s:22:"Insert HTML text here.";s:18:"footer-html-2color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-2link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-2link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-2";s:7:"inherit";s:29:"font-family-section-fb-html-2";s:7:"inherit";s:29:"font-extras-section-fb-html-2";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-2-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-2-bg-space";s:0:"";s:20:"header-social-2-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-2-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-2-color";s:0:"";s:23:"header-social-2-h-color";s:0:"";s:24:"header-social-2-bg-color";s:0:"";s:26:"header-social-2-bg-h-color";s:0:"";s:28:"header-social-2-label-toggle";b:0;s:26:"header-social-2-color-type";s:6:"custom";s:34:"header-social-2-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-2";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-2-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-2-bg-space";s:0:"";s:20:"footer-social-2-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-2-radius";s:0:"";s:21:"footer-social-2-color";s:0:"";s:23:"footer-social-2-h-color";s:0:"";s:24:"footer-social-2-bg-color";s:0:"";s:26:"footer-social-2-bg-h-color";s:0:"";s:28:"footer-social-2-label-toggle";b:0;s:26:"footer-social-2-color-type";s:6:"custom";s:27:"footer-social-2-brand-color";s:0:"";s:33:"footer-social-2-brand-label-color";s:0:"";s:34:"footer-social-2-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-2";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-2-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-2-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-2-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-2-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-2-font-family";s:7:"inherit";s:27:"header-widget-2-font-weight";s:7:"inherit";s:25:"header-widget-2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-2-content-font-family";s:7:"inherit";s:35:"header-widget-2-content-font-weight";s:7:"inherit";s:33:"header-widget-2-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-2-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-2-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-2-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-2-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-2-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-2-font-family";s:7:"inherit";s:27:"footer-widget-2-font-weight";s:7:"inherit";s:30:"footer-widget-2-text-transform";s:0:"";s:27:"footer-widget-2-line-height";s:0:"";s:25:"footer-widget-2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-2-content-font-family";s:7:"inherit";s:35:"footer-widget-2-content-font-weight";s:7:"inherit";s:35:"footer-widget-2-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-2-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-2";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu2-bg-color";s:0:"";s:18:"header-menu2-color";s:0:"";s:23:"header-menu2-h-bg-color";s:0:"";s:20:"header-menu2-h-color";s:0:"";s:23:"header-menu2-a-bg-color";s:0:"";s:20:"header-menu2-a-color";s:0:"";s:30:"header-menu2-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu2-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu2-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu2-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu2-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu2-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu2-menu-hover-animation";s:0:"";s:40:"header-menu2-submenu-container-animation";s:0:"";s:24:"section-hb-menu-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu2-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu2-submenu-item-border";b:0;s:32:"header-menu2-submenu-item-b-size";s:1:"1";s:33:"header-menu2-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu2-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu2-submenu-top-offset";s:0:"";s:26:"header-menu2-submenu-width";s:0:"";s:27:"header-menu2-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu2-menu-stack-on-mobile";b:1;s:22:"header-menu2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu2-font-weight";s:7:"inherit";s:24:"header-menu2-font-family";s:7:"inherit";s:24:"header-menu2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button3-text";s:6:"Button";s:26:"header-button3-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button3-font-family";s:7:"inherit";s:26:"header-button3-font-weight";s:7:"inherit";s:26:"header-button3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button3-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button3-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button3-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button3-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button3-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button3-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button3-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button3-border-radius";s:0:"";s:27:"section-hb-button-3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button3-text";s:6:"Button";s:26:"footer-button3-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button3-font-family";s:7:"inherit";s:26:"footer-button3-font-weight";s:7:"inherit";s:29:"footer-button3-text-transform";s:0:"";s:26:"footer-button3-line-height";s:0:"";s:24:"footer-button3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button3-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button3-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button3-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button3-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button3-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button3-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button3-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-3";s:22:"Insert HTML text here.";s:18:"header-html-3color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-3link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-3link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-3";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-3";s:7:"inherit";s:29:"font-family-section-hb-html-3";s:7:"inherit";s:29:"font-extras-section-hb-html-3";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-3";s:22:"Insert HTML text here.";s:18:"footer-html-3color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-3link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-3link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-3";s:7:"inherit";s:29:"font-family-section-fb-html-3";s:7:"inherit";s:29:"font-extras-section-fb-html-3";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-3-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-3-bg-space";s:0:"";s:20:"header-social-3-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-3-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-3-color";s:0:"";s:23:"header-social-3-h-color";s:0:"";s:24:"header-social-3-bg-color";s:0:"";s:26:"header-social-3-bg-h-color";s:0:"";s:28:"header-social-3-label-toggle";b:0;s:26:"header-social-3-color-type";s:6:"custom";s:34:"header-social-3-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-3";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-3-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-3-bg-space";s:0:"";s:20:"footer-social-3-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-3-radius";s:0:"";s:21:"footer-social-3-color";s:0:"";s:23:"footer-social-3-h-color";s:0:"";s:24:"footer-social-3-bg-color";s:0:"";s:26:"footer-social-3-bg-h-color";s:0:"";s:28:"footer-social-3-label-toggle";b:0;s:26:"footer-social-3-color-type";s:6:"custom";s:27:"footer-social-3-brand-color";s:0:"";s:33:"footer-social-3-brand-label-color";s:0:"";s:34:"footer-social-3-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-3";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-3-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-3-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-3-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-3-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-3-font-family";s:7:"inherit";s:27:"header-widget-3-font-weight";s:7:"inherit";s:25:"header-widget-3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-3-content-font-family";s:7:"inherit";s:35:"header-widget-3-content-font-weight";s:7:"inherit";s:33:"header-widget-3-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-3-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-3-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-3-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-3-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-3-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-3-font-family";s:7:"inherit";s:27:"footer-widget-3-font-weight";s:7:"inherit";s:30:"footer-widget-3-text-transform";s:0:"";s:27:"footer-widget-3-line-height";s:0:"";s:25:"footer-widget-3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-3-content-font-family";s:7:"inherit";s:35:"footer-widget-3-content-font-weight";s:7:"inherit";s:35:"footer-widget-3-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-3-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-3";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu3-bg-color";s:0:"";s:18:"header-menu3-color";s:0:"";s:23:"header-menu3-h-bg-color";s:0:"";s:20:"header-menu3-h-color";s:0:"";s:23:"header-menu3-a-bg-color";s:0:"";s:20:"header-menu3-a-color";s:0:"";s:30:"header-menu3-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu3-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu3-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu3-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu3-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu3-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu3-menu-hover-animation";s:0:"";s:40:"header-menu3-submenu-container-animation";s:0:"";s:24:"section-hb-menu-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu3-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu3-submenu-item-border";b:0;s:32:"header-menu3-submenu-item-b-size";s:1:"1";s:33:"header-menu3-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu3-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu3-submenu-top-offset";s:0:"";s:26:"header-menu3-submenu-width";s:0:"";s:27:"header-menu3-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu3-menu-stack-on-mobile";b:1;s:22:"header-menu3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu3-font-weight";s:7:"inherit";s:24:"header-menu3-font-family";s:7:"inherit";s:24:"header-menu3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button4-text";s:6:"Button";s:26:"header-button4-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button4-font-family";s:7:"inherit";s:26:"header-button4-font-weight";s:7:"inherit";s:26:"header-button4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button4-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button4-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button4-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button4-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button4-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button4-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button4-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button4-border-radius";s:0:"";s:27:"section-hb-button-4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button4-text";s:6:"Button";s:26:"footer-button4-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button4-font-family";s:7:"inherit";s:26:"footer-button4-font-weight";s:7:"inherit";s:29:"footer-button4-text-transform";s:0:"";s:26:"footer-button4-line-height";s:0:"";s:24:"footer-button4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button4-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button4-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button4-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button4-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button4-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button4-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button4-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-4";s:22:"Insert HTML text here.";s:18:"header-html-4color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-4link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-4link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-4";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-4";s:7:"inherit";s:29:"font-family-section-hb-html-4";s:7:"inherit";s:29:"font-extras-section-hb-html-4";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-4";s:22:"Insert HTML text here.";s:18:"footer-html-4color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-4link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-4link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-4";s:7:"inherit";s:29:"font-family-section-fb-html-4";s:7:"inherit";s:29:"font-extras-section-fb-html-4";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-4-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-4-bg-space";s:0:"";s:20:"header-social-4-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-4-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-4-color";s:0:"";s:23:"header-social-4-h-color";s:0:"";s:24:"header-social-4-bg-color";s:0:"";s:26:"header-social-4-bg-h-color";s:0:"";s:28:"header-social-4-label-toggle";b:0;s:26:"header-social-4-color-type";s:6:"custom";s:34:"header-social-4-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-4";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-4-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-4-bg-space";s:0:"";s:20:"footer-social-4-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-4-radius";s:0:"";s:21:"footer-social-4-color";s:0:"";s:23:"footer-social-4-h-color";s:0:"";s:24:"footer-social-4-bg-color";s:0:"";s:26:"footer-social-4-bg-h-color";s:0:"";s:28:"footer-social-4-label-toggle";b:0;s:26:"footer-social-4-color-type";s:6:"custom";s:27:"footer-social-4-brand-color";s:0:"";s:33:"footer-social-4-brand-label-color";s:0:"";s:34:"footer-social-4-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-4";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-4-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-4-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-4-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-4-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-4-font-family";s:7:"inherit";s:27:"header-widget-4-font-weight";s:7:"inherit";s:25:"header-widget-4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-4-content-font-family";s:7:"inherit";s:35:"header-widget-4-content-font-weight";s:7:"inherit";s:33:"header-widget-4-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-4-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-4-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-4-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-4-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-4-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-4-font-family";s:7:"inherit";s:27:"footer-widget-4-font-weight";s:7:"inherit";s:30:"footer-widget-4-text-transform";s:0:"";s:27:"footer-widget-4-line-height";s:0:"";s:25:"footer-widget-4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-4-content-font-family";s:7:"inherit";s:35:"footer-widget-4-content-font-weight";s:7:"inherit";s:35:"footer-widget-4-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-4-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-4";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu4-bg-color";s:0:"";s:18:"header-menu4-color";s:0:"";s:23:"header-menu4-h-bg-color";s:0:"";s:20:"header-menu4-h-color";s:0:"";s:23:"header-menu4-a-bg-color";s:0:"";s:20:"header-menu4-a-color";s:0:"";s:30:"header-menu4-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu4-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu4-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu4-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu4-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu4-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu4-menu-hover-animation";s:0:"";s:40:"header-menu4-submenu-container-animation";s:0:"";s:24:"section-hb-menu-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu4-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu4-submenu-item-border";b:0;s:32:"header-menu4-submenu-item-b-size";s:1:"1";s:33:"header-menu4-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu4-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu4-submenu-top-offset";s:0:"";s:26:"header-menu4-submenu-width";s:0:"";s:27:"header-menu4-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu4-menu-stack-on-mobile";b:1;s:22:"header-menu4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu4-font-weight";s:7:"inherit";s:24:"header-menu4-font-family";s:7:"inherit";s:24:"header-menu4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button5-text";s:6:"Button";s:26:"header-button5-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button5-font-family";s:7:"inherit";s:26:"header-button5-font-weight";s:7:"inherit";s:26:"header-button5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button5-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button5-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button5-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button5-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button5-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button5-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button5-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button5-border-radius";s:0:"";s:27:"section-hb-button-5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button5-text";s:6:"Button";s:26:"footer-button5-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button5-font-family";s:7:"inherit";s:26:"footer-button5-font-weight";s:7:"inherit";s:29:"footer-button5-text-transform";s:0:"";s:26:"footer-button5-line-height";s:0:"";s:24:"footer-button5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button5-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button5-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button5-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button5-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button5-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button5-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button5-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-5";s:22:"Insert HTML text here.";s:18:"header-html-5color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-5link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-5link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-5";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-5";s:7:"inherit";s:29:"font-family-section-hb-html-5";s:7:"inherit";s:29:"font-extras-section-hb-html-5";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-5";s:22:"Insert HTML text here.";s:18:"footer-html-5color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-5link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-5link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-5";s:7:"inherit";s:29:"font-family-section-fb-html-5";s:7:"inherit";s:29:"font-extras-section-fb-html-5";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-5-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-5-bg-space";s:0:"";s:20:"header-social-5-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-5-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-5-color";s:0:"";s:23:"header-social-5-h-color";s:0:"";s:24:"header-social-5-bg-color";s:0:"";s:26:"header-social-5-bg-h-color";s:0:"";s:28:"header-social-5-label-toggle";b:0;s:26:"header-social-5-color-type";s:6:"custom";s:34:"header-social-5-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-5";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-5-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-5-bg-space";s:0:"";s:20:"footer-social-5-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-5-radius";s:0:"";s:21:"footer-social-5-color";s:0:"";s:23:"footer-social-5-h-color";s:0:"";s:24:"footer-social-5-bg-color";s:0:"";s:26:"footer-social-5-bg-h-color";s:0:"";s:28:"footer-social-5-label-toggle";b:0;s:26:"footer-social-5-color-type";s:6:"custom";s:27:"footer-social-5-brand-color";s:0:"";s:33:"footer-social-5-brand-label-color";s:0:"";s:34:"footer-social-5-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-5";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-5-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-5-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-5-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-5-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-5-font-family";s:7:"inherit";s:27:"header-widget-5-font-weight";s:7:"inherit";s:25:"header-widget-5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-5-content-font-family";s:7:"inherit";s:35:"header-widget-5-content-font-weight";s:7:"inherit";s:33:"header-widget-5-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-5-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-5-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-5-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-5-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-5-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-5-font-family";s:7:"inherit";s:27:"footer-widget-5-font-weight";s:7:"inherit";s:30:"footer-widget-5-text-transform";s:0:"";s:27:"footer-widget-5-line-height";s:0:"";s:25:"footer-widget-5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-5-content-font-family";s:7:"inherit";s:35:"footer-widget-5-content-font-weight";s:7:"inherit";s:35:"footer-widget-5-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-5-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-5";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu5-bg-color";s:0:"";s:18:"header-menu5-color";s:0:"";s:23:"header-menu5-h-bg-color";s:0:"";s:20:"header-menu5-h-color";s:0:"";s:23:"header-menu5-a-bg-color";s:0:"";s:20:"header-menu5-a-color";s:0:"";s:30:"header-menu5-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu5-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu5-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu5-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu5-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu5-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu5-menu-hover-animation";s:0:"";s:40:"header-menu5-submenu-container-animation";s:0:"";s:24:"section-hb-menu-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu5-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu5-submenu-item-border";b:0;s:32:"header-menu5-submenu-item-b-size";s:1:"1";s:33:"header-menu5-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu5-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu5-submenu-top-offset";s:0:"";s:26:"header-menu5-submenu-width";s:0:"";s:27:"header-menu5-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu5-menu-stack-on-mobile";b:1;s:22:"header-menu5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu5-font-weight";s:7:"inherit";s:24:"header-menu5-font-family";s:7:"inherit";s:24:"header-menu5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button6-text";s:6:"Button";s:26:"header-button6-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button6-font-family";s:7:"inherit";s:26:"header-button6-font-weight";s:7:"inherit";s:26:"header-button6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button6-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button6-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button6-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button6-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button6-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button6-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button6-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button6-border-radius";s:0:"";s:27:"section-hb-button-6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button6-text";s:6:"Button";s:26:"footer-button6-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button6-font-family";s:7:"inherit";s:26:"footer-button6-font-weight";s:7:"inherit";s:29:"footer-button6-text-transform";s:0:"";s:26:"footer-button6-line-height";s:0:"";s:24:"footer-button6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button6-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button6-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button6-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button6-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button6-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button6-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button6-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-6";s:22:"Insert HTML text here.";s:18:"header-html-6color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-6link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-6link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-6";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-6";s:7:"inherit";s:29:"font-family-section-hb-html-6";s:7:"inherit";s:29:"font-extras-section-hb-html-6";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-6";s:22:"Insert HTML text here.";s:18:"footer-html-6color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-6link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-6link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-6";s:7:"inherit";s:29:"font-family-section-fb-html-6";s:7:"inherit";s:29:"font-extras-section-fb-html-6";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-6-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-6-bg-space";s:0:"";s:20:"header-social-6-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-6-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-6-color";s:0:"";s:23:"header-social-6-h-color";s:0:"";s:24:"header-social-6-bg-color";s:0:"";s:26:"header-social-6-bg-h-color";s:0:"";s:28:"header-social-6-label-toggle";b:0;s:26:"header-social-6-color-type";s:6:"custom";s:34:"header-social-6-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-6";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-6-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-6-bg-space";s:0:"";s:20:"footer-social-6-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-6-radius";s:0:"";s:21:"footer-social-6-color";s:0:"";s:23:"footer-social-6-h-color";s:0:"";s:24:"footer-social-6-bg-color";s:0:"";s:26:"footer-social-6-bg-h-color";s:0:"";s:28:"footer-social-6-label-toggle";b:0;s:26:"footer-social-6-color-type";s:6:"custom";s:27:"footer-social-6-brand-color";s:0:"";s:33:"footer-social-6-brand-label-color";s:0:"";s:34:"footer-social-6-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-6";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-6-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-6-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-6-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-6-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-6-font-family";s:7:"inherit";s:27:"header-widget-6-font-weight";s:7:"inherit";s:25:"header-widget-6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-6-content-font-family";s:7:"inherit";s:35:"header-widget-6-content-font-weight";s:7:"inherit";s:33:"header-widget-6-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-6-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-6-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-6-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-6-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-6-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-6-font-family";s:7:"inherit";s:27:"footer-widget-6-font-weight";s:7:"inherit";s:30:"footer-widget-6-text-transform";s:0:"";s:27:"footer-widget-6-line-height";s:0:"";s:25:"footer-widget-6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-6-content-font-family";s:7:"inherit";s:35:"footer-widget-6-content-font-weight";s:7:"inherit";s:35:"footer-widget-6-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-6-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-6";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu6-bg-color";s:0:"";s:18:"header-menu6-color";s:0:"";s:23:"header-menu6-h-bg-color";s:0:"";s:20:"header-menu6-h-color";s:0:"";s:23:"header-menu6-a-bg-color";s:0:"";s:20:"header-menu6-a-color";s:0:"";s:30:"header-menu6-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu6-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu6-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu6-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu6-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu6-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu6-menu-hover-animation";s:0:"";s:40:"header-menu6-submenu-container-animation";s:0:"";s:24:"section-hb-menu-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu6-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu6-submenu-item-border";b:0;s:32:"header-menu6-submenu-item-b-size";s:1:"1";s:33:"header-menu6-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu6-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu6-submenu-top-offset";s:0:"";s:26:"header-menu6-submenu-width";s:0:"";s:27:"header-menu6-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu6-menu-stack-on-mobile";b:1;s:22:"header-menu6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu6-font-weight";s:7:"inherit";s:24:"header-menu6-font-family";s:7:"inherit";s:24:"header-menu6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button7-text";s:6:"Button";s:26:"header-button7-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button7-font-family";s:7:"inherit";s:26:"header-button7-font-weight";s:7:"inherit";s:26:"header-button7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button7-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button7-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button7-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button7-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button7-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button7-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button7-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button7-border-radius";s:0:"";s:27:"section-hb-button-7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button7-text";s:6:"Button";s:26:"footer-button7-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button7-font-family";s:7:"inherit";s:26:"footer-button7-font-weight";s:7:"inherit";s:29:"footer-button7-text-transform";s:0:"";s:26:"footer-button7-line-height";s:0:"";s:24:"footer-button7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button7-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button7-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button7-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button7-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button7-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button7-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button7-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-7";s:22:"Insert HTML text here.";s:18:"header-html-7color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-7link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-7link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-7";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-7";s:7:"inherit";s:29:"font-family-section-hb-html-7";s:7:"inherit";s:29:"font-extras-section-hb-html-7";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-7";s:22:"Insert HTML text here.";s:18:"footer-html-7color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-7link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-7link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-7";s:7:"inherit";s:29:"font-family-section-fb-html-7";s:7:"inherit";s:29:"font-extras-section-fb-html-7";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-7-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-7-bg-space";s:0:"";s:20:"header-social-7-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-7-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-7-color";s:0:"";s:23:"header-social-7-h-color";s:0:"";s:24:"header-social-7-bg-color";s:0:"";s:26:"header-social-7-bg-h-color";s:0:"";s:28:"header-social-7-label-toggle";b:0;s:26:"header-social-7-color-type";s:6:"custom";s:34:"header-social-7-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-7";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-7-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-7-bg-space";s:0:"";s:20:"footer-social-7-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-7-radius";s:0:"";s:21:"footer-social-7-color";s:0:"";s:23:"footer-social-7-h-color";s:0:"";s:24:"footer-social-7-bg-color";s:0:"";s:26:"footer-social-7-bg-h-color";s:0:"";s:28:"footer-social-7-label-toggle";b:0;s:26:"footer-social-7-color-type";s:6:"custom";s:27:"footer-social-7-brand-color";s:0:"";s:33:"footer-social-7-brand-label-color";s:0:"";s:34:"footer-social-7-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-7";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-7-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-7-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-7-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-7-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-7-font-family";s:7:"inherit";s:27:"header-widget-7-font-weight";s:7:"inherit";s:25:"header-widget-7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-7-content-font-family";s:7:"inherit";s:35:"header-widget-7-content-font-weight";s:7:"inherit";s:33:"header-widget-7-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-7-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-7-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-7-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-7-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-7-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-7-font-family";s:7:"inherit";s:27:"footer-widget-7-font-weight";s:7:"inherit";s:30:"footer-widget-7-text-transform";s:0:"";s:27:"footer-widget-7-line-height";s:0:"";s:25:"footer-widget-7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-7-content-font-family";s:7:"inherit";s:35:"footer-widget-7-content-font-weight";s:7:"inherit";s:35:"footer-widget-7-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-7-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-7";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu7-bg-color";s:0:"";s:18:"header-menu7-color";s:0:"";s:23:"header-menu7-h-bg-color";s:0:"";s:20:"header-menu7-h-color";s:0:"";s:23:"header-menu7-a-bg-color";s:0:"";s:20:"header-menu7-a-color";s:0:"";s:30:"header-menu7-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu7-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu7-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu7-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu7-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu7-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu7-menu-hover-animation";s:0:"";s:40:"header-menu7-submenu-container-animation";s:0:"";s:24:"section-hb-menu-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu7-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu7-submenu-item-border";b:0;s:32:"header-menu7-submenu-item-b-size";s:1:"1";s:33:"header-menu7-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu7-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu7-submenu-top-offset";s:0:"";s:26:"header-menu7-submenu-width";s:0:"";s:27:"header-menu7-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu7-menu-stack-on-mobile";b:1;s:22:"header-menu7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu7-font-weight";s:7:"inherit";s:24:"header-menu7-font-family";s:7:"inherit";s:24:"header-menu7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button8-text";s:6:"Button";s:26:"header-button8-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button8-font-family";s:7:"inherit";s:26:"header-button8-font-weight";s:7:"inherit";s:26:"header-button8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button8-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button8-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button8-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button8-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button8-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button8-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button8-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button8-border-radius";s:0:"";s:27:"section-hb-button-8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button8-text";s:6:"Button";s:26:"footer-button8-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button8-font-family";s:7:"inherit";s:26:"footer-button8-font-weight";s:7:"inherit";s:29:"footer-button8-text-transform";s:0:"";s:26:"footer-button8-line-height";s:0:"";s:24:"footer-button8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button8-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button8-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button8-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button8-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button8-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button8-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button8-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-8";s:22:"Insert HTML text here.";s:18:"header-html-8color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-8link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-8link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-8";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-8";s:7:"inherit";s:29:"font-family-section-hb-html-8";s:7:"inherit";s:29:"font-extras-section-hb-html-8";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-8";s:22:"Insert HTML text here.";s:18:"footer-html-8color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-8link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-8link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-8";s:7:"inherit";s:29:"font-family-section-fb-html-8";s:7:"inherit";s:29:"font-extras-section-fb-html-8";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-8-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-8-bg-space";s:0:"";s:20:"header-social-8-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-8-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-8-color";s:0:"";s:23:"header-social-8-h-color";s:0:"";s:24:"header-social-8-bg-color";s:0:"";s:26:"header-social-8-bg-h-color";s:0:"";s:28:"header-social-8-label-toggle";b:0;s:26:"header-social-8-color-type";s:6:"custom";s:34:"header-social-8-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-8";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-8-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-8-bg-space";s:0:"";s:20:"footer-social-8-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-8-radius";s:0:"";s:21:"footer-social-8-color";s:0:"";s:23:"footer-social-8-h-color";s:0:"";s:24:"footer-social-8-bg-color";s:0:"";s:26:"footer-social-8-bg-h-color";s:0:"";s:28:"footer-social-8-label-toggle";b:0;s:26:"footer-social-8-color-type";s:6:"custom";s:27:"footer-social-8-brand-color";s:0:"";s:33:"footer-social-8-brand-label-color";s:0:"";s:34:"footer-social-8-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-8";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-8-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-8-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-8-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-8-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-8-font-family";s:7:"inherit";s:27:"header-widget-8-font-weight";s:7:"inherit";s:25:"header-widget-8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-8-content-font-family";s:7:"inherit";s:35:"header-widget-8-content-font-weight";s:7:"inherit";s:33:"header-widget-8-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-8-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-8-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-8-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-8-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-8-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-8-font-family";s:7:"inherit";s:27:"footer-widget-8-font-weight";s:7:"inherit";s:30:"footer-widget-8-text-transform";s:0:"";s:27:"footer-widget-8-line-height";s:0:"";s:25:"footer-widget-8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-8-content-font-family";s:7:"inherit";s:35:"footer-widget-8-content-font-weight";s:7:"inherit";s:35:"footer-widget-8-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-8-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-8";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu8-bg-color";s:0:"";s:18:"header-menu8-color";s:0:"";s:23:"header-menu8-h-bg-color";s:0:"";s:20:"header-menu8-h-color";s:0:"";s:23:"header-menu8-a-bg-color";s:0:"";s:20:"header-menu8-a-color";s:0:"";s:30:"header-menu8-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu8-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu8-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu8-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu8-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu8-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu8-menu-hover-animation";s:0:"";s:40:"header-menu8-submenu-container-animation";s:0:"";s:24:"section-hb-menu-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu8-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu8-submenu-item-border";b:0;s:32:"header-menu8-submenu-item-b-size";s:1:"1";s:33:"header-menu8-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu8-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu8-submenu-top-offset";s:0:"";s:26:"header-menu8-submenu-width";s:0:"";s:27:"header-menu8-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu8-menu-stack-on-mobile";b:1;s:22:"header-menu8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu8-font-weight";s:7:"inherit";s:24:"header-menu8-font-family";s:7:"inherit";s:24:"header-menu8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button9-text";s:6:"Button";s:26:"header-button9-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button9-font-family";s:7:"inherit";s:26:"header-button9-font-weight";s:7:"inherit";s:26:"header-button9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button9-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button9-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button9-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button9-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button9-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button9-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button9-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button9-border-radius";s:0:"";s:27:"section-hb-button-9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button9-text";s:6:"Button";s:26:"footer-button9-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button9-font-family";s:7:"inherit";s:26:"footer-button9-font-weight";s:7:"inherit";s:29:"footer-button9-text-transform";s:0:"";s:26:"footer-button9-line-height";s:0:"";s:24:"footer-button9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button9-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button9-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button9-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button9-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button9-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button9-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button9-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-9";s:22:"Insert HTML text here.";s:18:"header-html-9color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-9link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-9link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-9";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-9";s:7:"inherit";s:29:"font-family-section-hb-html-9";s:7:"inherit";s:29:"font-extras-section-hb-html-9";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-9";s:22:"Insert HTML text here.";s:18:"footer-html-9color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-9link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-9link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-9";s:7:"inherit";s:29:"font-family-section-fb-html-9";s:7:"inherit";s:29:"font-extras-section-fb-html-9";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-9-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-9-bg-space";s:0:"";s:20:"header-social-9-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-9-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-9-color";s:0:"";s:23:"header-social-9-h-color";s:0:"";s:24:"header-social-9-bg-color";s:0:"";s:26:"header-social-9-bg-h-color";s:0:"";s:28:"header-social-9-label-toggle";b:0;s:26:"header-social-9-color-type";s:6:"custom";s:34:"header-social-9-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-9";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-9-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-9-bg-space";s:0:"";s:20:"footer-social-9-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-9-radius";s:0:"";s:21:"footer-social-9-color";s:0:"";s:23:"footer-social-9-h-color";s:0:"";s:24:"footer-social-9-bg-color";s:0:"";s:26:"footer-social-9-bg-h-color";s:0:"";s:28:"footer-social-9-label-toggle";b:0;s:26:"footer-social-9-color-type";s:6:"custom";s:27:"footer-social-9-brand-color";s:0:"";s:33:"footer-social-9-brand-label-color";s:0:"";s:34:"footer-social-9-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-9";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-9-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-9-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-9-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-9-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-9-font-family";s:7:"inherit";s:27:"header-widget-9-font-weight";s:7:"inherit";s:25:"header-widget-9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-9-content-font-family";s:7:"inherit";s:35:"header-widget-9-content-font-weight";s:7:"inherit";s:33:"header-widget-9-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-9-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-9-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-9-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-9-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-9-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-9-font-family";s:7:"inherit";s:27:"footer-widget-9-font-weight";s:7:"inherit";s:30:"footer-widget-9-text-transform";s:0:"";s:27:"footer-widget-9-line-height";s:0:"";s:25:"footer-widget-9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-9-content-font-family";s:7:"inherit";s:35:"footer-widget-9-content-font-weight";s:7:"inherit";s:35:"footer-widget-9-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-9-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-9";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu9-bg-color";s:0:"";s:18:"header-menu9-color";s:0:"";s:23:"header-menu9-h-bg-color";s:0:"";s:20:"header-menu9-h-color";s:0:"";s:23:"header-menu9-a-bg-color";s:0:"";s:20:"header-menu9-a-color";s:0:"";s:30:"header-menu9-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu9-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu9-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu9-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu9-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu9-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu9-menu-hover-animation";s:0:"";s:40:"header-menu9-submenu-container-animation";s:0:"";s:24:"section-hb-menu-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu9-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu9-submenu-item-border";b:0;s:32:"header-menu9-submenu-item-b-size";s:1:"1";s:33:"header-menu9-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu9-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu9-submenu-top-offset";s:0:"";s:26:"header-menu9-submenu-width";s:0:"";s:27:"header-menu9-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu9-menu-stack-on-mobile";b:1;s:22:"header-menu9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu9-font-weight";s:7:"inherit";s:24:"header-menu9-font-family";s:7:"inherit";s:24:"header-menu9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"header-button10-text";s:6:"Button";s:27:"header-button10-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:27:"header-button10-font-family";s:7:"inherit";s:27:"header-button10-font-weight";s:7:"inherit";s:27:"header-button10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"header-button10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button10-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-button10-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-button10-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-button10-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-button10-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:28:"header-button10-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"header-button10-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"header-button10-border-radius";s:0:"";s:28:"section-hb-button-10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-hb-button-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"sticky-header-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"footer-button10-text";s:6:"Button";s:27:"footer-button10-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:27:"footer-button10-font-family";s:7:"inherit";s:27:"footer-button10-font-weight";s:7:"inherit";s:30:"footer-button10-text-transform";s:0:"";s:27:"footer-button10-line-height";s:0:"";s:25:"footer-button10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button10-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-button10-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-button10-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-button10-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-button10-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:28:"footer-button10-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"footer-button10-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:28:"section-fb-button-10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-button-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:14:"header-html-10";s:22:"Insert HTML text here.";s:19:"header-html-10color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-html-10link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-html-10link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"font-size-section-hb-html-10";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"font-weight-section-hb-html-10";s:7:"inherit";s:30:"font-family-section-hb-html-10";s:7:"inherit";s:30:"font-extras-section-hb-html-10";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"section-hb-html-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:14:"footer-html-10";s:22:"Insert HTML text here.";s:19:"footer-html-10color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-html-10link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-html-10link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"font-size-section-fb-html-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"footer-html-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:30:"font-weight-section-fb-html-10";s:7:"inherit";s:30:"font-family-section-fb-html-10";s:7:"inherit";s:30:"font-extras-section-fb-html-10";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"section-fb-html-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-10-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-social-10-bg-space";s:0:"";s:21:"header-social-10-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"header-social-10-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-10-color";s:0:"";s:24:"header-social-10-h-color";s:0:"";s:25:"header-social-10-bg-color";s:0:"";s:27:"header-social-10-bg-h-color";s:0:"";s:29:"header-social-10-label-toggle";b:0;s:27:"header-social-10-color-type";s:6:"custom";s:35:"header-social-10-brand-hover-toggle";b:0;s:36:"font-size-section-hb-social-icons-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-icons-10";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:33:"section-hb-social-icons-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"footer-social-10-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-social-10-bg-space";s:0:"";s:21:"footer-social-10-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-social-10-radius";s:0:"";s:22:"footer-social-10-color";s:0:"";s:24:"footer-social-10-h-color";s:0:"";s:25:"footer-social-10-bg-color";s:0:"";s:27:"footer-social-10-bg-h-color";s:0:"";s:29:"footer-social-10-label-toggle";b:0;s:27:"footer-social-10-color-type";s:6:"custom";s:28:"footer-social-10-brand-color";s:0:"";s:34:"footer-social-10-brand-label-color";s:0:"";s:35:"footer-social-10-brand-hover-toggle";b:0;s:36:"font-size-section-fb-social-icons-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"footer-social-icons-10";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:26:"footer-social-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:33:"section-fb-social-icons-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-widget-10-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-widget-10-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-10-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-widget-10-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-10-font-family";s:7:"inherit";s:28:"header-widget-10-font-weight";s:7:"inherit";s:26:"header-widget-10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-widget-10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:36:"header-widget-10-content-font-family";s:7:"inherit";s:36:"header-widget-10-content-font-weight";s:7:"inherit";s:34:"header-widget-10-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"header-widget-10-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:39:"sidebar-widgets-header-widget-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"footer-widget-10-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-widget-10-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-10-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"footer-widget-10-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-10-font-family";s:7:"inherit";s:28:"footer-widget-10-font-weight";s:7:"inherit";s:31:"footer-widget-10-text-transform";s:0:"";s:28:"footer-widget-10-line-height";s:0:"";s:26:"footer-widget-10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"footer-widget-10-content-font-family";s:7:"inherit";s:36:"footer-widget-10-content-font-weight";s:7:"inherit";s:36:"footer-widget-10-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:34:"footer-widget-10-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-widget-alignment-10";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:39:"sidebar-widgets-footer-widget-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-menu10-bg-color";s:0:"";s:19:"header-menu10-color";s:0:"";s:24:"header-menu10-h-bg-color";s:0:"";s:21:"header-menu10-h-color";s:0:"";s:24:"header-menu10-a-bg-color";s:0:"";s:21:"header-menu10-a-color";s:0:"";s:31:"header-menu10-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:30:"header-menu10-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-menu10-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"header-menu10-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-menu10-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"header-menu10-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu10-menu-hover-animation";s:0:"";s:41:"header-menu10-submenu-container-animation";s:0:"";s:25:"section-hb-menu-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-menu10-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:33:"header-menu10-submenu-item-border";b:0;s:33:"header-menu10-submenu-item-b-size";s:1:"1";s:34:"header-menu10-submenu-item-b-color";s:7:"#eaeaea";s:42:"header-menu10-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu10-submenu-top-offset";s:0:"";s:27:"header-menu10-submenu-width";s:0:"";s:28:"header-menu10-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:34:"header-menu10-menu-stack-on-mobile";b:1;s:23:"header-menu10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu10-font-weight";s:7:"inherit";s:25:"header-menu10-font-family";s:7:"inherit";s:25:"header-menu10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:28:"section-hb-divider-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"section-fb-divider-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"sticky-header-on-devices";s:7:"desktop";s:19:"sticky-header-style";s:4:"none";s:20:"footer-desktop-items";a:10:{s:5:"above";a:6:{s:7:"above_1";a:0:{}s:7:"above_2";a:0:{}s:7:"above_3";a:0:{}s:7:"above_4";a:0:{}s:7:"above_5";a:0:{}s:7:"above_6";a:0:{}}s:7:"primary";a:6:{s:9:"primary_1";a:0:{}s:9:"primary_2";a:0:{}s:9:"primary_3";a:0:{}s:9:"primary_4";a:0:{}s:9:"primary_5";a:0:{}s:9:"primary_6";a:0:{}}s:5:"below";a:6:{s:7:"below_1";a:1:{i:0;s:9:"copyright";}s:7:"below_2";a:0:{}s:7:"below_3";a:0:{}s:7:"below_4";a:0:{}s:7:"below_5";a:0:{}s:7:"below_6";a:0:{}}s:5:"group";s:36:"astra-settings[footer-desktop-items]";s:4:"rows";a:3:{i:0;s:5:"above";i:1;s:7:"primary";i:2;s:5:"below";}s:5:"zones";a:3:{s:5:"above";a:6:{s:7:"above_1";s:15:"Above Section 1";s:7:"above_2";s:15:"Above Section 2";s:7:"above_3";s:15:"Above Section 3";s:7:"above_4";s:15:"Above Section 4";s:7:"above_5";s:15:"Above Section 5";s:7:"above_6";s:15:"Above Section 6";}s:7:"primary";a:6:{s:9:"primary_1";s:17:"Primary Section 1";s:9:"primary_2";s:17:"Primary Section 2";s:9:"primary_3";s:17:"Primary Section 3";s:9:"primary_4";s:17:"Primary Section 4";s:9:"primary_5";s:17:"Primary Section 5";s:9:"primary_6";s:17:"Primary Section 6";}s:5:"below";a:6:{s:7:"below_1";s:15:"Below Section 1";s:7:"below_2";s:15:"Below Section 2";s:7:"below_3";s:15:"Below Section 3";s:7:"below_4";s:15:"Below Section 4";s:7:"below_5";s:15:"Below Section 5";s:7:"below_6";s:15:"Below Section 6";}}s:7:"layouts";a:3:{s:5:"above";a:2:{s:6:"column";s:1:"2";s:6:"layout";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}}s:7:"primary";a:2:{s:6:"column";s:1:"3";s:6:"layout";a:3:{s:7:"desktop";s:7:"3-equal";s:6:"tablet";s:7:"3-equal";s:6:"mobile";s:4:"full";}}s:5:"below";a:2:{s:6:"column";i:1;s:6:"layout";a:3:{s:6:"mobile";s:4:"full";s:6:"tablet";s:4:"full";s:7:"desktop";s:4:"full";}}}s:6:"status";a:3:{s:5:"above";b:1;s:7:"primary";b:1;s:5:"below";b:1;}s:4:"flag";b:0;s:5:"popup";a:1:{s:13:"popup_content";a:0:{}}}s:17:"hba-footer-height";i:60;s:17:"hba-footer-column";s:1:"2";s:17:"hba-footer-layout";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}s:28:"hba-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#eeeeee";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:28:"hbb-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:27:"hb-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#f9f9f9";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:27:"hbb-footer-top-border-color";s:65:"var( --ast-global-color-subtle-background, --ast-global-color-7 )";s:20:"hbb-footer-separator";i:0;s:36:"section-header-builder-layout-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:17:"hbb-footer-height";i:30;s:17:"hbb-footer-column";s:1:"1";s:17:"hbb-footer-layout";a:4:{s:7:"desktop";s:4:"full";s:6:"tablet";s:4:"full";s:6:"mobile";s:4:"full";s:4:"flag";b:0;}s:24:"hb-primary-footer-height";s:0:"";s:23:"hba-footer-layout-width";s:7:"content";s:22:"hb-footer-layout-width";s:7:"content";s:23:"hbb-footer-layout-width";s:7:"content";s:29:"hba-footer-vertical-alignment";s:10:"flex-start";s:28:"hb-footer-vertical-alignment";s:10:"flex-start";s:29:"hbb-footer-vertical-alignment";s:6:"center";s:24:"footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:16:"hb-footer-column";s:1:"3";s:19:"hb-footer-separator";i:1;s:29:"hb-footer-bottom-border-color";s:7:"#e6e6e6";s:16:"hb-footer-layout";a:3:{s:7:"desktop";s:7:"3-equal";s:6:"tablet";s:7:"3-equal";s:6:"mobile";s:4:"full";}s:18:"hb-footer-main-sep";i:1;s:24:"hb-footer-main-sep-color";s:7:"#e6e6e6";s:24:"live-search-result-count";i:5;s:23:"footer-copyright-editor";s:49:"Copyright [copyright] [current_year] [site_title]";s:22:"footer-copyright-color";s:25:"var(--ast-global-color-2)";s:36:"line-height-section-footer-copyright";s:0:"";s:26:"footer-copyright-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:34:"font-size-section-footer-copyright";a:6:{s:7:"desktop";i:14;s:6:"tablet";i:14;s:6:"mobile";i:13;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"font-weight-section-footer-copyright";s:7:"inherit";s:36:"font-family-section-footer-copyright";s:7:"inherit";s:36:"font-extras-section-footer-copyright";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:21:"footer-menu-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:36:"section-below-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"25";s:5:"right";s:2:"40";s:6:"bottom";s:2:"25";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-search-icon-space";a:3:{s:7:"desktop";i:18;s:6:"tablet";i:18;s:6:"mobile";i:18;}s:24:"header-search-icon-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:19:"header-search-width";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:11:"live-search";b:0;s:22:"live-search-post-types";a:2:{s:4:"post";i:1;s:4:"page";i:1;}s:37:"transparent-header-social-icons-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:39:"transparent-header-social-icons-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:40:"transparent-header-social-icons-bg-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"transparent-header-social-icons-bg-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"transparent-header-html-text-color";s:0:"";s:34:"transparent-header-html-link-color";s:0:"";s:36:"transparent-header-html-link-h-color";s:0:"";s:37:"transparent-header-widget-title-color";s:0:"";s:39:"transparent-header-widget-content-color";s:0:"";s:36:"transparent-header-widget-link-color";s:0:"";s:38:"transparent-header-widget-link-h-color";s:0:"";s:36:"transparent-header-button-text-color";s:7:"#ffffff";s:38:"transparent-header-button-text-h-color";s:25:"var(--ast-global-color-7)";s:34:"transparent-header-button-bg-color";s:0:"";s:36:"transparent-header-button-bg-h-color";s:7:"#ffffff";s:17:"off-canvas-layout";s:10:"side-panel";s:16:"off-canvas-slide";s:5:"right";s:33:"header-builder-menu-toggle-target";s:4:"icon";s:34:"header-offcanvas-content-alignment";s:10:"flex-start";s:21:"off-canvas-background";a:6:{s:16:"background-color";s:7:"#ffffff";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:22:"off-canvas-close-color";s:7:"#3a3a3a";s:18:"mobile-header-type";s:8:"dropdown";s:20:"off-canvas-move-body";b:1;s:24:"off-canvas-inner-spacing";s:0:"";s:18:"footer-menu-layout";a:3:{s:7:"desktop";s:10:"horizontal";s:6:"tablet";s:8:"vertical";s:6:"mobile";s:8:"vertical";}s:29:"footer-menu-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:28:"footer-menu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"footer-menu-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"footer-menu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"footer-menu-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"footer-menu-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-menu-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-menu-font-weight";s:7:"inherit";s:23:"footer-menu-font-family";s:7:"inherit";s:23:"footer-menu-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"footer-main-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:2:"20";s:6:"bottom";s:1:"0";s:4:"left";s:2:"20";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-trigger-icon";s:4:"menu";s:30:"mobile-header-toggle-icon-size";i:20;s:36:"mobile-header-toggle-btn-border-size";a:4:{s:3:"top";i:1;s:5:"right";i:1;s:6:"bottom";i:1;s:4:"left";i:1;}s:34:"mobile-header-toggle-border-radius";i:2;s:41:"mobile-header-toggle-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:2;s:5:"right";i:2;s:6:"bottom";i:2;s:4:"left";i:2;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"mobile-header-label-font-family";s:7:"inherit";s:31:"mobile-header-label-font-weight";s:7:"inherit";s:34:"mobile-header-label-text-transform";s:0:"";s:31:"mobile-header-label-line-height";s:0:"";s:29:"mobile-header-label-font-size";s:0:"";s:20:"global-color-palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffde2f";i:1;s:7:"#ebc500";i:2;s:7:"#ffffff";i:3;s:7:"#ffffff";i:4;s:7:"#0b2329";i:5;s:7:"#091d22";i:6;s:7:"#585858";i:7;s:7:"#030c0e";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:17:"header-logo-color";s:0:"";s:27:"header-mobile-menu-bg-color";s:0:"";s:24:"header-mobile-menu-color";s:0:"";s:29:"header-mobile-menu-h-bg-color";s:0:"";s:26:"header-mobile-menu-h-color";s:0:"";s:29:"header-mobile-menu-a-bg-color";s:0:"";s:26:"header-mobile-menu-a-color";s:0:"";s:36:"header-mobile-menu-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:35:"header-mobile-menu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:37:"header-mobile-menu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:37:"header-mobile-menu-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-0)";s:6:"mobile";s:0:"";}s:40:"header-mobile-menu-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:40:"header-mobile-menu-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:46:"header-mobile-menu-submenu-container-animation";s:4:"fade";s:38:"header-mobile-menu-submenu-item-border";b:1;s:38:"header-mobile-menu-submenu-item-b-size";i:1;s:39:"header-mobile-menu-submenu-item-b-color";s:25:"var(--ast-global-color-6)";s:33:"header-mobile-menu-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:28:"header-mobile-menu-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";i:13;s:6:"mobile";i:13;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"font-extras-header-mobile-menu";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:28:"woo-header-cart-click-action";s:7:"default";s:28:"responsive-cart-click-action";s:6:"flyout";s:23:"woo-slide-in-cart-width";a:6:{s:7:"desktop";i:460;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:41:"woo-header-cart-icon-total-label-position";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-woo-cart-icon-size";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:20:"woo-header-cart-icon";s:7:"default";s:26:"woo-header-cart-icon-style";s:7:"outline";s:41:"woo-header-cart-product-count-color-group";s:57:"var( --ast-global-color-secondary, --ast-global-color-5 )";s:33:"woo-desktop-cart-flyout-direction";s:5:"right";s:26:"header-woo-cart-icon-color";s:0:"";s:38:"transparent-header-woo-cart-icon-color";s:0:"";s:32:"header-woo-cart-icon-hover-color";s:0:"";s:28:"woo-header-cart-border-width";i:2;s:34:"woo-header-cart-icon-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:3;s:5:"right";i:3;s:6:"bottom";i:3;s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"woo-header-cart-badge-display";b:1;s:29:"woo-header-cart-label-display";s:0:"";s:26:"header-woo-cart-text-color";s:0:"";s:26:"header-woo-cart-link-color";s:0:"";s:32:"header-woo-cart-background-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:38:"header-woo-cart-background-hover-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-woo-cart-separator-color";s:0:"";s:32:"header-woo-cart-link-hover-color";s:0:"";s:30:"header-woo-cart-btn-text-color";s:0:"";s:36:"header-woo-cart-btn-background-color";s:0:"";s:36:"header-woo-cart-btn-text-hover-color";s:0:"";s:34:"header-woo-cart-btn-bg-hover-color";s:0:"";s:34:"header-woo-checkout-btn-text-color";s:0:"";s:40:"header-woo-checkout-btn-background-color";s:0:"";s:40:"header-woo-checkout-btn-text-hover-color";s:0:"";s:38:"header-woo-checkout-btn-bg-hover-color";s:0:"";s:26:"edd-header-cart-icon-style";s:7:"outline";s:26:"edd-header-cart-icon-color";s:0:"";s:27:"edd-header-cart-icon-radius";i:3;s:38:"transparent-header-edd-cart-icon-color";s:0:"";s:29:"edd-header-cart-total-display";b:1;s:29:"edd-header-cart-title-display";b:1;s:26:"header-edd-cart-text-color";s:0:"";s:26:"header-edd-cart-link-color";s:0:"";s:32:"header-edd-cart-background-color";s:0:"";s:31:"header-edd-cart-separator-color";s:0:"";s:34:"header-edd-checkout-btn-text-color";s:0:"";s:40:"header-edd-checkout-btn-background-color";s:0:"";s:40:"header-edd-checkout-btn-text-hover-color";s:0:"";s:38:"header-edd-checkout-btn-bg-hover-color";s:0:"";s:19:"header-account-type";s:7:"default";s:26:"header-account-login-style";s:4:"icon";s:51:"header-account-login-style-extend-text-profile-type";s:7:"default";s:26:"header-account-action-type";s:4:"link";s:24:"header-account-link-type";s:7:"default";s:27:"header-account-logout-style";s:4:"icon";s:52:"header-account-logout-style-extend-text-profile-type";s:7:"default";s:30:"header-account-logged-out-text";s:6:"Log In";s:29:"header-account-logged-in-text";s:10:"My Account";s:28:"header-account-logout-action";s:4:"link";s:26:"header-account-image-width";a:3:{s:7:"desktop";s:2:"40";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-account-icon-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";i:18;s:6:"mobile";i:18;}s:25:"header-account-icon-color";s:0:"";s:25:"header-account-login-link";a:3:{s:3:"url";s:0:"";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-account-logout-link";a:3:{s:3:"url";s:48:"https://websitedemos.net/wp-preview/wp-login.php";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:32:"font-size-section-header-account";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"header-account-type-text-color";s:0:"";s:23:"header-account-woo-menu";b:0;s:22:"cloned-component-track";a:12:{s:13:"header-button";i:2;s:13:"footer-button";i:2;s:11:"header-html";i:2;s:11:"footer-html";i:2;s:11:"header-menu";i:2;s:13:"header-widget";i:4;s:13:"footer-widget";i:4;s:19:"header-social-icons";i:1;s:19:"footer-social-icons";i:1;s:14:"header-divider";i:0;s:14:"footer-divider";i:0;s:13:"removed-items";a:0:{}}s:26:"blog-single-post-structure";a:2:{i:0;s:12:"single-image";i:1;s:17:"single-title-meta";}s:16:"blog-single-meta";a:3:{i:0;s:8:"comments";i:1;s:8:"category";i:2;s:6:"author";}s:13:"button-radius";i:50;s:19:"site-content-layout";s:23:"content-boxed-container";s:26:"single-page-content-layout";s:15:"plain-container";s:26:"single-post-content-layout";s:7:"default";s:27:"archive-post-content-layout";s:7:"default";s:16:"body-line-height";s:4:"1.65";s:23:"headings-text-transform";s:0:"";s:20:"headings-line-height";s:0:"";s:21:"font-size-entry-title";a:6:{s:7:"desktop";i:30;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"font-size-archive-summary-title";a:6:{s:7:"desktop";i:40;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"load-google-fonts-locally";b:0;s:19:"preload-local-fonts";b:0;s:36:"related-posts-content-text-transform";s:0:"";s:33:"related-posts-content-line-height";s:0:"";s:25:"breadcrumb-text-transform";s:0:"";s:21:"text-transform-button";s:0:"";s:21:"theme-btn-line-height";i:1;s:24:"theme-btn-letter-spacing";s:0:"";s:29:"header-button1-text-transform";s:0:"";s:26:"header-button1-line-height";s:0:"";s:28:"footer-button1-border-radius";s:0:"";s:29:"line-height-section-hb-html-1";s:0:"";s:32:"text-transform-section-hb-html-1";s:0:"";s:32:"text-transform-section-fb-html-1";s:0:"";s:29:"line-height-section-fb-html-1";s:0:"";s:22:"header-social-1-radius";s:0:"";s:30:"header-widget-1-text-transform";s:0:"";s:27:"header-widget-1-line-height";s:0:"";s:38:"header-widget-1-content-text-transform";s:0:"";s:35:"header-widget-1-content-line-height";s:0:"";s:38:"footer-widget-1-content-text-transform";s:0:"";s:35:"footer-widget-1-content-line-height";s:0:"";s:34:"header-menu1-submenu-border-radius";s:0:"";s:27:"header-menu1-text-transform";s:0:"";s:24:"header-menu1-line-height";s:0:"";s:29:"header-button2-text-transform";s:0:"";s:26:"header-button2-line-height";s:0:"";s:28:"footer-button2-border-radius";s:0:"";s:29:"line-height-section-hb-html-2";s:0:"";s:32:"text-transform-section-hb-html-2";s:0:"";s:32:"text-transform-section-fb-html-2";s:0:"";s:29:"line-height-section-fb-html-2";s:0:"";s:22:"header-social-2-radius";s:0:"";s:30:"header-widget-2-text-transform";s:0:"";s:27:"header-widget-2-line-height";s:0:"";s:38:"header-widget-2-content-text-transform";s:0:"";s:35:"header-widget-2-content-line-height";s:0:"";s:38:"footer-widget-2-content-text-transform";s:0:"";s:35:"footer-widget-2-content-line-height";s:0:"";s:34:"header-menu2-submenu-border-radius";s:0:"";s:27:"header-menu2-text-transform";s:0:"";s:24:"header-menu2-line-height";s:0:"";s:29:"header-button3-text-transform";s:0:"";s:26:"header-button3-line-height";s:0:"";s:28:"footer-button3-border-radius";s:0:"";s:29:"line-height-section-hb-html-3";s:0:"";s:32:"text-transform-section-hb-html-3";s:0:"";s:32:"text-transform-section-fb-html-3";s:0:"";s:29:"line-height-section-fb-html-3";s:0:"";s:22:"header-social-3-radius";s:0:"";s:30:"header-widget-3-text-transform";s:0:"";s:27:"header-widget-3-line-height";s:0:"";s:38:"header-widget-3-content-text-transform";s:0:"";s:35:"header-widget-3-content-line-height";s:0:"";s:38:"footer-widget-3-content-text-transform";s:0:"";s:35:"footer-widget-3-content-line-height";s:0:"";s:34:"header-menu3-submenu-border-radius";s:0:"";s:27:"header-menu3-text-transform";s:0:"";s:24:"header-menu3-line-height";s:0:"";s:29:"header-button4-text-transform";s:0:"";s:26:"header-button4-line-height";s:0:"";s:28:"footer-button4-border-radius";s:0:"";s:29:"line-height-section-hb-html-4";s:0:"";s:32:"text-transform-section-hb-html-4";s:0:"";s:32:"text-transform-section-fb-html-4";s:0:"";s:29:"line-height-section-fb-html-4";s:0:"";s:22:"header-social-4-radius";s:0:"";s:30:"header-widget-4-text-transform";s:0:"";s:27:"header-widget-4-line-height";s:0:"";s:38:"header-widget-4-content-text-transform";s:0:"";s:35:"header-widget-4-content-line-height";s:0:"";s:38:"footer-widget-4-content-text-transform";s:0:"";s:35:"footer-widget-4-content-line-height";s:0:"";s:34:"header-menu4-submenu-border-radius";s:0:"";s:27:"header-menu4-text-transform";s:0:"";s:24:"header-menu4-line-height";s:0:"";s:29:"header-button5-text-transform";s:0:"";s:26:"header-button5-line-height";s:0:"";s:28:"footer-button5-border-radius";s:0:"";s:29:"line-height-section-hb-html-5";s:0:"";s:32:"text-transform-section-hb-html-5";s:0:"";s:32:"text-transform-section-fb-html-5";s:0:"";s:29:"line-height-section-fb-html-5";s:0:"";s:22:"header-social-5-radius";s:0:"";s:30:"header-widget-5-text-transform";s:0:"";s:27:"header-widget-5-line-height";s:0:"";s:38:"header-widget-5-content-text-transform";s:0:"";s:35:"header-widget-5-content-line-height";s:0:"";s:38:"footer-widget-5-content-text-transform";s:0:"";s:35:"footer-widget-5-content-line-height";s:0:"";s:34:"header-menu5-submenu-border-radius";s:0:"";s:27:"header-menu5-text-transform";s:0:"";s:24:"header-menu5-line-height";s:0:"";s:29:"header-button6-text-transform";s:0:"";s:26:"header-button6-line-height";s:0:"";s:28:"footer-button6-border-radius";s:0:"";s:29:"line-height-section-hb-html-6";s:0:"";s:32:"text-transform-section-hb-html-6";s:0:"";s:32:"text-transform-section-fb-html-6";s:0:"";s:29:"line-height-section-fb-html-6";s:0:"";s:22:"header-social-6-radius";s:0:"";s:30:"header-widget-6-text-transform";s:0:"";s:27:"header-widget-6-line-height";s:0:"";s:38:"header-widget-6-content-text-transform";s:0:"";s:35:"header-widget-6-content-line-height";s:0:"";s:38:"footer-widget-6-content-text-transform";s:0:"";s:35:"footer-widget-6-content-line-height";s:0:"";s:34:"header-menu6-submenu-border-radius";s:0:"";s:27:"header-menu6-text-transform";s:0:"";s:24:"header-menu6-line-height";s:0:"";s:29:"header-button7-text-transform";s:0:"";s:26:"header-button7-line-height";s:0:"";s:28:"footer-button7-border-radius";s:0:"";s:29:"line-height-section-hb-html-7";s:0:"";s:32:"text-transform-section-hb-html-7";s:0:"";s:32:"text-transform-section-fb-html-7";s:0:"";s:29:"line-height-section-fb-html-7";s:0:"";s:22:"header-social-7-radius";s:0:"";s:30:"header-widget-7-text-transform";s:0:"";s:27:"header-widget-7-line-height";s:0:"";s:38:"header-widget-7-content-text-transform";s:0:"";s:35:"header-widget-7-content-line-height";s:0:"";s:38:"footer-widget-7-content-text-transform";s:0:"";s:35:"footer-widget-7-content-line-height";s:0:"";s:34:"header-menu7-submenu-border-radius";s:0:"";s:27:"header-menu7-text-transform";s:0:"";s:24:"header-menu7-line-height";s:0:"";s:29:"header-button8-text-transform";s:0:"";s:26:"header-button8-line-height";s:0:"";s:28:"footer-button8-border-radius";s:0:"";s:29:"line-height-section-hb-html-8";s:0:"";s:32:"text-transform-section-hb-html-8";s:0:"";s:32:"text-transform-section-fb-html-8";s:0:"";s:29:"line-height-section-fb-html-8";s:0:"";s:22:"header-social-8-radius";s:0:"";s:30:"header-widget-8-text-transform";s:0:"";s:27:"header-widget-8-line-height";s:0:"";s:38:"header-widget-8-content-text-transform";s:0:"";s:35:"header-widget-8-content-line-height";s:0:"";s:38:"footer-widget-8-content-text-transform";s:0:"";s:35:"footer-widget-8-content-line-height";s:0:"";s:34:"header-menu8-submenu-border-radius";s:0:"";s:27:"header-menu8-text-transform";s:0:"";s:24:"header-menu8-line-height";s:0:"";s:29:"header-button9-text-transform";s:0:"";s:26:"header-button9-line-height";s:0:"";s:28:"footer-button9-border-radius";s:0:"";s:29:"line-height-section-hb-html-9";s:0:"";s:32:"text-transform-section-hb-html-9";s:0:"";s:32:"text-transform-section-fb-html-9";s:0:"";s:29:"line-height-section-fb-html-9";s:0:"";s:22:"header-social-9-radius";s:0:"";s:30:"header-widget-9-text-transform";s:0:"";s:27:"header-widget-9-line-height";s:0:"";s:38:"header-widget-9-content-text-transform";s:0:"";s:35:"header-widget-9-content-line-height";s:0:"";s:38:"footer-widget-9-content-text-transform";s:0:"";s:35:"footer-widget-9-content-line-height";s:0:"";s:34:"header-menu9-submenu-border-radius";s:0:"";s:27:"header-menu9-text-transform";s:0:"";s:24:"header-menu9-line-height";s:0:"";s:30:"header-button10-text-transform";s:0:"";s:27:"header-button10-line-height";s:0:"";s:29:"footer-button10-border-radius";s:0:"";s:30:"line-height-section-hb-html-10";s:0:"";s:33:"text-transform-section-hb-html-10";s:0:"";s:33:"text-transform-section-fb-html-10";s:0:"";s:30:"line-height-section-fb-html-10";s:0:"";s:23:"header-social-10-radius";s:0:"";s:31:"header-widget-10-text-transform";s:0:"";s:28:"header-widget-10-line-height";s:0:"";s:39:"header-widget-10-content-text-transform";s:0:"";s:36:"header-widget-10-content-line-height";s:0:"";s:39:"footer-widget-10-content-text-transform";s:0:"";s:36:"footer-widget-10-content-line-height";s:0:"";s:35:"header-menu10-submenu-border-radius";s:0:"";s:28:"header-menu10-text-transform";s:0:"";s:25:"header-menu10-line-height";s:0:"";s:39:"text-transform-section-footer-copyright";s:0:"";s:26:"footer-menu-text-transform";s:0:"";s:23:"footer-menu-line-height";s:0:"";s:30:"header-mobile-menu-font-weight";s:7:"inherit";s:30:"header-mobile-menu-font-family";s:7:"inherit";s:33:"header-mobile-menu-text-transform";s:0:"";s:30:"header-mobile-menu-line-height";s:0:"";s:27:"woo-header-cart-icon-radius";i:3;s:29:"woo-desktop-cart-flyout-width";i:460;s:18:"theme-auto-version";s:7:"4.11.15";s:50:"ast-callback-notice-header-transparent-header-logo";s:0:"";s:55:"ast-callback-notice-header-transparent-header-logo-link";s:0:"";s:51:"ast-callback-notice-header-transparent-meta-enabled";s:0:"";s:55:"ast-callback-notice-header-transparent-header-meta-link";s:0:"";s:33:"_astra_pb_compatibility_completed";b:1;s:21:"headings-font-variant";s:3:"400";s:30:"mobile-header-toggle-btn-color";s:7:"#ffffff";s:32:"astra-old-global-sidebar-default";b:0;s:28:"spectra-gutenberg-compat-css";b:0;s:38:"theme-button-border-group-border-color";s:25:"var(--ast-global-color-0)";s:40:"theme-button-border-group-border-h-color";s:25:"var(--ast-global-color-1)";s:33:"mobile-header-toggle-border-color";s:7:"#ffffff";s:30:"ast-dynamic-single-post-layout";s:8:"layout-1";s:33:"ast-dynamic-single-post-structure";a:3:{i:0;s:29:"ast-dynamic-single-post-title";i:1;s:28:"ast-dynamic-single-post-meta";i:2;s:29:"ast-dynamic-single-post-image";}s:46:"ast-dynamic-single-post-featured-as-background";b:1;s:47:"ast-dynamic-single-post-banner-featured-overlay";s:17:"rgba(3,12,14,0.7)";s:37:"ast-dynamic-single-post-banner-height";a:3:{s:7:"desktop";i:400;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"ast-dynamic-single-post-banner-title-color";s:25:"var(--ast-global-color-2)";s:38:"ast-dynamic-single-post-banner-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"4";s:5:"right";i:3;s:6:"bottom";s:1:"0";s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:33:"elementor-container-padding-style";b:0;s:15:"blog-image-size";s:4:"full";s:31:"ast-dynamic-archive-post-layout";s:8:"layout-2";s:37:"ast-dynamic-archive-post-custom-title";s:33:"Inspiring Designs for Every Space";s:45:"ast-dynamic-archive-post-horizontal-alignment";a:1:{s:7:"desktop";s:6:"center";}s:39:"ast-dynamic-archive-post-banner-on-blog";b:1;s:38:"ast-dynamic-archive-post-banner-height";a:3:{s:7:"desktop";i:450;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:37:"ast-dynamic-archive-post-elements-gap";i:20;s:42:"ast-dynamic-archive-post-banner-image-type";s:6:"custom";s:41:"ast-dynamic-archive-post-banner-custom-bg";a:3:{s:7:"desktop";a:12:{s:16:"background-color";s:0:"";s:16:"background-image";s:85:"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:5:"cover";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:7:"classic";s:13:"overlay-color";s:25:"var(--ast-global-color-7)";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:5:"image";s:16:"background-media";i:12;s:15:"overlay-opacity";d:0.7;}s:6:"tablet";a:11:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:0:"";s:13:"overlay-color";s:0:"";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"mobile";a:11:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:0:"";s:13:"overlay-color";s:0:"";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}}s:40:"ast-dynamic-archive-post-title-font-size";a:6:{s:7:"desktop";i:68;s:6:"tablet";i:52;s:6:"mobile";i:28;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"ast-dynamic-archive-post-banner-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"single-post-inside-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"40";s:5:"right";s:2:"40";s:6:"bottom";s:2:"40";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:2:"32";s:5:"right";s:2:"32";s:6:"bottom";s:2:"32";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"24";s:5:"right";s:2:"24";s:6:"bottom";s:2:"24";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:64:"ast-dynamic-single-post-article-featured-image-position-layout-1";s:4:"none";s:57:"ast-dynamic-single-post-article-featured-image-ratio-type";s:6:"custom";s:51:"ast-dynamic-single-post-article-featured-image-size";s:4:"full";s:46:"ast-dynamic-single-post-taxonomy-clone-tracker";i:0;s:42:"ast-dynamic-single-post-author-avatar-size";i:40;s:37:"ast-dynamic-single-post-author-avatar";b:1;s:39:"ast-dynamic-single-post-title-font-size";a:6:{s:7:"desktop";i:30;s:6:"tablet";i:24;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:39:"ast-dynamic-archive-post-banner-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"6";s:5:"right";i:3;s:6:"bottom";s:1:"0";s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:26:"archive-post-content-style";s:7:"unboxed";s:41:"ast-dynamic-single-post-banner-link-color";s:0:"";s:47:"ast-dynamic-single-post-banner-link-hover-color";s:0:"";s:32:"transparent-header-disable-posts";b:1;s:29:"header-button1-border-h-color";a:1:{s:7:"desktop";s:7:"#ffffff";}s:38:"transparent-header-button-border-color";s:7:"#ffffff";s:40:"transparent-header-button-border-h-color";s:7:"#ffffff";s:27:"section-single-page-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-single-page-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:34:"global-headings-line-height-update";b:1;s:43:"ast-dynamic-archive-post-banner-title-color";s:7:"#ffffff";s:37:"single_posts_pages_heading_clear_none";b:0;s:21:"elementor-btn-styling";b:0;s:52:"remove_single_posts_navigation_mobile_device_padding";b:1;s:48:"secondary-theme-button-border-group-border-color";s:7:"#ffffff";s:50:"secondary-theme-button-border-group-border-h-color";s:7:"#ffffff";s:27:"enable-4-6-14-compatibility";b:0;s:65:"ast-dynamic-single-post-article-featured-image-custom-scale-width";i:4;s:66:"ast-dynamic-single-post-article-featured-image-custom-scale-height";i:3;s:24:"heading-widget-font-size";b:0;s:26:"enable-4-8-0-compatibility";b:0;s:22:"is_theme_queue_running";b:0;s:22:"v4-8-2-backward-option";b:0;s:26:"enable-4-8-4-compatibility";b:0;s:37:"astra-heading-font-size-compatibility";b:0;s:26:"enable-4-8-9-compatibility";b:0;s:16:"star-rating-comp";b:0;s:22:"v4-9-0-backward-option";b:0;s:16:"btn-consist-comp";b:0;s:28:"enable-4-11-12-compatibility";b:0;s:18:"display-site-title";b:1;}', 'auto-off');
INSERT INTO `wp8u_options` VALUES
(207, 'allowed_astra_notices', 'a:6:{i:0;s:21:"astra-sites-on-active";i:1;s:18:"astra-optin-notice";i:2;s:16:"bsf-optin-notice";i:3;s:20:"spectra-optin-notice";i:4;s:22:"sureforms-optin-notice";i:5;s:26:"astra-sites-welcome-notice";}', 'auto'),
(208, 'astra_analytics_installed_time', '1763181618', 'off'),
(211, 'nps-survey-astra', 'a:6:{s:13:"dismiss_count";i:0;s:19:"dismiss_permanently";b:0;s:12:"dismiss_step";s:0:"";s:12:"dismiss_time";s:0:"";s:16:"dismiss_timespan";N;s:17:"first_render_time";i:1763181645;}', 'auto'),
(213, 'pagelayer_icons_set', 'a:1:{i:0;s:13:"font-awesome5";}', 'auto'),
(217, 'bsf_product_referers', 'a:6:{s:11:"astra-sites";s:5:"astra";s:29:"ultimate-addons-for-gutenberg";s:5:"zipwp";s:9:"sureforms";s:5:"zipwp";s:8:"surerank";s:5:"zipwp";s:12:"suretriggers";s:5:"zipwp";s:9:"latepoint";s:5:"zipwp";}', 'auto'),
(221, '_site_transient_timeout_astra-sites-import-check', '1763786519', 'off'),
(222, '_site_transient_astra-sites-import-check', 'true', 'off'),
(224, 'astra-sites-last-export-checksums-latest', 'gnmK4wGt^td#', 'off'),
(227, 'astra-sites-batch-status-string', 'All processes are complete', 'off'),
(228, 'astra-blocks-batch-status-string', 'Complete storing data for page 4', 'off'),
(231, 'astra-sites-fresh-site', 'no', 'off'),
(232, 'ai_builder_recent_import_log_file', '/home/novatio1/public_html/wp/wp-content/uploads/ai-builder/import-15-Nov-2025-04-42-00-1e59300cdd825e571826e1b454350abf.log', 'off'),
(233, 'bsf_analytics_installed_time', '1763181720', 'off'),
(234, 'ast-block-templates-version', '2.4.15', 'auto'),
(239, 'astra_sites_settings', 'a:3:{s:12:"page_builder";s:10:"ai-builder";s:13:"steps_visited";a:1:{i:0;s:7:"welcome";}s:16:"required_plugins";a:6:{s:29:"ultimate-addons-for-gutenberg";s:9:"activated";s:9:"sureforms";s:9:"activated";s:8:"surerank";s:9:"activated";s:12:"suretriggers";s:9:"activated";s:20:"wp-live-chat-support";s:9:"activated";s:9:"latepoint";s:9:"activated";}}', 'off'),
(240, 'astra-sites-batch-is-complete', 'yes', 'off'),
(241, 'astra-sites-last-export-checksums', 'gnmK4wGt^td#', 'off'),
(242, '_transient_timeout_zipwp_images_server_country_code', '1765774646', 'off'),
(243, '_transient_zipwp_images_server_country_code', 'US', 'off'),
(246, 'zipwp_user_business_details', 'a:12:{s:20:"business_description";s:633:"Novation Interiors is a premier interior design studio operating online at www.novationinteriors.com. This dynamic team, led by a passionate mother-daughter duo, specializes in transforming residential and commercial spaces into personalized sanctuaries. Since their inception, they have gained a reputation for their meticulous attention to detail and a collaborative approach, ensuring that every design reflects the client''s unique lifestyle and personality. Clients choose Novation Interiors for their innovative solutions that seamlessly blend elegance with functionality, making them a top choice for enhancing any environment.";s:13:"business_name";s:25:"www.novationinteriors.com";s:14:"business_email";s:30:"designer@novationinteriors.com";s:16:"business_address";s:11:"Navi Mumbai";s:14:"business_phone";s:21:"9320464646/7045598686";s:17:"business_category";s:17:"Interior Designer";s:22:"business_category_name";s:17:"Interior Designer";s:13:"image_keyword";a:5:{i:0;s:15:"interior design";i:1;s:18:"residential spaces";i:2;s:17:"commercial spaces";i:3;s:18:"personalized decor";i:4;s:19:"functional elegance";}s:6:"images";a:16:{i:0;a:11:{s:2:"id";s:7:"1643383";s:3:"url";s:73:"https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:31:"interior-design-of-home-1643383";s:17:"download_location";s:0:"";}i:1;a:11:{s:2:"id";s:7:"1457842";s:3:"url";s:73:"https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.";s:10:"author_url";s:28:"https://www.pexels.com/@jvdm";s:11:"author_name";s:19:"Jean van der Meulen";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:28:"photo-of-living-room-1457842";s:17:"download_location";s:0:"";}i:2;a:11:{s:2:"id";s:7:"1571460";s:3:"url";s:73:"https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:88:"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:34:"interior-design-of-a-house-1571460";s:17:"download_location";s:0:"";}i:3;a:11:{s:2:"id";s:7:"1571453";s:3:"url";s:73:"https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:88:"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:62:"two-chairs-with-glass-table-on-living-room-near-window-1571453";s:17:"download_location";s:0:"";}i:4;a:11:{s:2:"id";s:6:"271816";s:3:"url";s:71:"https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:95:"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.";s:10:"author_url";s:31:"https://www.pexels.com/@pixabay";s:11:"author_name";s:7:"Pixabay";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:28:"gray-wooden-sideboard-271816";s:17:"download_location";s:0:"";}i:5;a:11:{s:2:"id";s:6:"276724";s:3:"url";s:71:"https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Inviting living room interior featuring modern design with cozy furnishings and stylish decor.";s:10:"author_url";s:31:"https://www.pexels.com/@pixabay";s:11:"author_name";s:7:"Pixabay";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:32:"turned-off-flat-screen-tv-276724";s:17:"download_location";s:0:"";}i:6;a:11:{s:2:"id";s:6:"827518";s:3:"url";s:70:"https://images.pexels.com/photos/827518/pexels-photo-827518.jpeg?w=700";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/827518/pexels-photo-827518.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:80:"Inviting café corner with lush plants and cozy seating, perfect for relaxation.";s:10:"author_url";s:32:"https://www.pexels.com/@valeriya";s:11:"author_name";s:16:"Valeria Boltneva";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:50:"photography-of-table-and-chairs-near-plants-827518";s:17:"download_location";s:0:"";}i:7;a:11:{s:2:"id";s:7:"1129413";s:3:"url";s:72:"https://images.pexels.com/photos/1129413/pexels-photo-1129413.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1129413/pexels-photo-1129413.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:73:"Cozy indoor space with rustic decor, warm lighting, and natural elements.";s:10:"author_url";s:32:"https://www.pexels.com/@valeriya";s:11:"author_name";s:16:"Valeria Boltneva";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:41:"brown-wooden-vase-near-the-window-1129413";s:17:"download_location";s:0:"";}i:8;a:11:{s:2:"id";s:7:"1374125";s:3:"url";s:72:"https://images.pexels.com/photos/1374125/pexels-photo-1374125.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1374125/pexels-photo-1374125.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:110:"A stylish and cozy bedroom featuring green walls, botanical prints, and soft lighting for a contemporary feel.";s:10:"author_url";s:36:"https://www.pexels.com/@julieaagaard";s:11:"author_name";s:13:"julie aagaard";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:40:"two-panel-painting-of-palm-plant-1374125";s:17:"download_location";s:0:"";}i:9;a:11:{s:2:"id";s:7:"4352247";s:3:"url";s:72:"https://images.pexels.com/photos/4352247/pexels-photo-4352247.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/4352247/pexels-photo-4352247.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:112:"A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor.";s:10:"author_url";s:35:"https://www.pexels.com/@maksgelatin";s:11:"author_name";s:18:"Maksim Goncharenok";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:35:"white-couch-on-wooden-floor-4352247";s:17:"download_location";s:0:"";}i:10;a:11:{s:2:"id";s:6:"447592";s:3:"url";s:70:"https://images.pexels.com/photos/447592/pexels-photo-447592.jpeg?w=700";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/447592/pexels-photo-447592.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:111:"Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration.";s:10:"author_url";s:42:"https://www.pexels.com/@medhat-ayad-122846";s:11:"author_name";s:11:"Medhat Ayad";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:51:"round-beige-and-brown-wooden-table-and-chair-447592";s:17:"download_location";s:0:"";}i:11;a:11:{s:2:"id";s:7:"1648771";s:3:"url";s:73:"https://images.pexels.com/photos/1648771/pexels-photo-1648771.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1648771/pexels-photo-1648771.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:69:"Elegant modern interior living room with fireplace and stylish decor.";s:10:"author_url";s:43:"https://www.pexels.com/@vika-glitter-392079";s:11:"author_name";s:12:"Vika Glitter";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:23:"interior-design-1648771";s:17:"download_location";s:0:"";}i:12;a:11:{s:2:"id";s:7:"1571459";s:3:"url";s:73:"https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:79:"Spacious modern living room featuring stairs, a TV, and sleek furniture design.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:43:"turned-on-gray-flat-screen-smart-tv-1571459";s:17:"download_location";s:0:"";}i:13;a:11:{s:2:"id";s:7:"1457844";s:3:"url";s:72:"https://images.pexels.com/photos/1457844/pexels-photo-1457844.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1457844/pexels-photo-1457844.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:87:"Sleek contemporary hallway featuring a stunning glass chandelier and minimalist design.";s:10:"author_url";s:28:"https://www.pexels.com/@jvdm";s:11:"author_name";s:19:"Jean van der Meulen";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:34:"white-downlight-chandelier-1457844";s:17:"download_location";s:0:"";}i:14;a:11:{s:2:"id";s:6:"245208";s:3:"url";s:71:"https://images.pexels.com/photos/245208/pexels-photo-245208.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/245208/pexels-photo-245208.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements.";s:10:"author_url";s:34:"https://www.pexels.com/@atbo-66986";s:11:"author_name";s:4:"ATBO";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:40:"brown-white-and-blue-wooden-board-245208";s:17:"download_location";s:0:"";}i:15;a:11:{s:2:"id";s:7:"2067638";s:3:"url";s:72:"https://images.pexels.com/photos/2067638/pexels-photo-2067638.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/2067638/pexels-photo-2067638.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:93:"Stylish café interior featuring modern décor, green walls, plants, and comfortable seating.";s:10:"author_url";s:47:"https://www.pexels.com/@marta-dzedyshko-1042863";s:11:"author_name";s:15:"Marta Dzedyshko";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:51:"two-female-and-male-sketch-drawings-on-wall-2067638";s:17:"download_location";s:0:"";}}s:15:"social_profiles";a:0:{}s:8:"language";s:2:"en";s:9:"templates";a:0:{}}', 'auto'),
(247, 'zipwp_selection_templates', 'a:3:{i:0;a:2:{s:5:"match";s:11:"exact_match";s:7:"designs";a:0:{}}i:1;a:2:{s:5:"match";s:13:"partial_match";s:7:"designs";a:10:{i:0;a:11:{s:4:"uuid";s:36:"1142a4ff-e76e-4c14-94a8-d8f9e1e9fa7c";s:4:"name";s:7:"Stellar";s:6:"domain";s:31:"multipurpose46.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:282;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:292;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:294;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:807;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:296;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#4e9d4c";i:1;s:7:"#3d933b";i:2;s:7:"#001d4a";i:3;s:7:"#697a96";i:4;s:7:"#f1f4f9";i:5;s:7:"#FFFFFF";i:6;s:7:"#d9e3f3";i:7;s:7:"#001d4a";i:8;s:7:"#b52765";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Cabin'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:19:"''Cabin'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:1;a:11:{s:4:"uuid";s:36:"32541247-4478-4e20-9529-8587fdbab5fd";s:4:"name";s:6:"Almond";s:6:"domain";s:32:"multipurpose-32.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:19;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:21;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:22;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:30;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:31;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#223035";i:1;s:7:"#f47a55";i:2;s:7:"#223035";i:3;s:7:"#4c575b";i:4;s:7:"#f1f3f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#f1f3f1";i:7;s:7:"#223035";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Heebo'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:17;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Inter'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:2;a:11:{s:4:"uuid";s:36:"e8c47be3-5503-4102-8260-5d543dd7bfb5";s:4:"name";s:8:"Foxglove";s:6:"domain";s:31:"multipurpose43.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:296;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:298;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:299;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:300;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:301;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ff6464";i:1;s:7:"#f14e4e";i:2;s:7:"#071f1b";i:3;s:7:"#393939";i:4;s:7:"#faf6f6";i:5;s:7:"#FFFFFF";i:6;s:7:"#e4dede";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Work Sans'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''Belleza'', sans-serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:3;a:11:{s:4:"uuid";s:36:"ee04ba64-4b1f-4613-b8b1-c89986d83784";s:4:"name";s:4:"Reef";s:6:"domain";s:32:"multipurpose-33.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:41;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:42;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:43;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:44;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:45;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#1b9156";i:1;s:7:"#2ac578";i:2;s:7:"#013839";i:3;s:7:"#494d4d";i:4;s:7:"#f2f7f5";i:5;s:7:"#FFFFFF";i:6;s:7:"#b6c4bd";i:7;s:7:"#000f0f";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''DM Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:4;a:11:{s:4:"uuid";s:36:"07aabb7a-677d-4163-aad3-79dd3000a471";s:4:"name";s:6:"Meteor";s:6:"domain";s:31:"multipurpose28.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:306;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:307;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:308;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:309;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:310;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#26a96c";i:1;s:7:"#19975c";i:2;s:7:"#0b160b";i:3;s:7:"#586a62";i:4;s:7:"#eaf8f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#d0dfd8";i:7;s:7:"#0b160b";i:8;s:7:"#111111";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Quicksand'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:23:"''Quicksand'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:5;a:11:{s:4:"uuid";s:36:"8af201d0-f647-43a8-9bdb-10f2707106d0";s:4:"name";s:6:"Sprout";s:6:"domain";s:32:"multipurpose-34.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:28;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:29;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:30;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:31;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:32;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ee5959";i:1;s:7:"#d84545";i:2;s:7:"#001f3f";i:3;s:7:"#494d4d";i:4;s:7:"#f9f3f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#d5c9c9";i:7;s:7:"#080000";i:8;s:7:"#292020";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:31:"''Plus Jakarta Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:6;a:11:{s:4:"uuid";s:36:"e68380fb-aa65-41f7-add6-9ee219003924";s:4:"name";s:5:"Hosta";s:6:"domain";s:31:"multipurpose44.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:38;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:39;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:40;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:41;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:42;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffb650";i:1;s:7:"#ffc26d";i:2;s:7:"#000000";i:3;s:7:"#4e4e4e";i:4;s:7:"#f6f5f2";i:5;s:7:"#FFFFFF";i:6;s:7:"#dadada";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:20:"''Roboto Slab'', serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:15:"''Besley'', serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:7;a:11:{s:4:"uuid";s:36:"528664a1-403b-484b-a558-8a7bd38b6309";s:4:"name";s:9:"Supernova";s:6:"domain";s:31:"multipurpose45.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:289;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:290;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:291;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:292;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:293;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#0067FF";i:1;s:7:"#005EE9";i:2;s:7:"#0f172a";i:3;s:7:"#364151";i:4;s:7:"#E7F6FF";i:5;s:7:"#FFFFFF";i:6;s:7:"#D1DAE5";i:7;s:7:"#070614";i:8;s:7:"#222222";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:26:"''Josefin Sans'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:26:"''Josefin Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:8;a:11:{s:4:"uuid";s:36:"d9dcc64e-a34c-4ab9-a5b7-e0fe366dfad9";s:4:"name";s:9:"Celestial";s:6:"domain";s:31:"multipurpose27.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:14;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:15;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:17;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:18;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:19;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#00a7a7";i:1;s:7:"#008686";i:2;s:7:"#020202";i:3;s:7:"#353535";i:4;s:7:"#e7f2f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#c0c0c0";i:7;s:7:"#011114";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Rubik'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:17;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Rubik'', sans-serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:9;a:11:{s:4:"uuid";s:36:"85d9d03f-a115-4fe7-ba98-69f3c5227faf";s:4:"name";s:5:"Acorn";s:6:"domain";s:32:"multipurpose-31.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:17;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:18;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:20;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:22;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:23;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#008f9e";i:1;s:7:"#047b86";i:2;s:7:"#0c0c0c";i:3;s:7:"#353131";i:4;s:7:"#e4efed";i:5;s:7:"#f4f9fa";i:6;s:7:"#8a8a8a";i:7;s:7:"#011213";i:8;s:7:"#302523";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''DM Sans'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:17:"''Fraunces'', serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}}}i:2;a:2:{s:5:"match";s:13:"generic_match";s:7:"designs";a:35:{i:0;a:11:{s:4:"uuid";s:36:"cfebab1e-46ba-4880-887c-4fa0b789ec0a";s:4:"name";s:7:"Blossom";s:6:"domain";s:30:"multipurpose1.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:8;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:118;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:9:"Offerings";s:7:"post_id";i:167;s:9:"post_slug";s:9:"offerings";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:1259;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:228;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#086afe";i:1;s:7:"#257af8";i:2;s:7:"#031530";i:3;s:7:"#374c6c";i:4;s:7:"#ebf5ff";i:5;s:7:"#FFFFFF";i:6;s:7:"#e2e8f0";i:7;s:7:"#000000";i:8;s:7:"#94a3b8";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:7:"400,500";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:20:"''Outfit'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"500";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:1;a:11:{s:4:"uuid";s:36:"ccccd71e-5867-4742-8983-ae8ab070f93d";s:4:"name";s:5:"Daisy";s:6:"domain";s:30:"multipurpose4.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:32;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:34;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:9:"Offerings";s:7:"post_id";i:35;s:9:"post_slug";s:9:"offerings";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:774;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:36;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#2a9d8f";i:1;s:7:"#097c6e";i:2;s:7:"#000000";i:3;s:16:"rgba(0,0,0,0.65)";i:4;s:7:"#ecf4f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#d1d1d1";i:7;s:7:"#000000";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:20:"''Mulish'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''DM Sans'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:2;a:11:{s:4:"uuid";s:36:"34ffc4ec-e098-4372-81e8-1a4a6edb4c9c";s:4:"name";s:5:"Tulip";s:6:"domain";s:30:"multipurpose7.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:42;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:44;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:9:"Offerings";s:7:"post_id";i:45;s:9:"post_slug";s:9:"offerings";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:939;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:46;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#4039fb";i:1;s:7:"#4f49fd";i:2;s:7:"#0f172a";i:3;s:7:"#454f5e";i:4;s:7:"#f1f5f9";i:5;s:7:"#FFFFFF";i:6;s:7:"#ced4e0";i:7;s:7:"#0f172a";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:16;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''DM Sans'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:3;a:11:{s:4:"uuid";s:36:"185c2582-da7a-474e-87f0-18c53e7f7c14";s:4:"name";s:6:"Orchid";s:6:"domain";s:30:"multipurpose8.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:9;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:12;s:9:"post_slug";s:8:"about-us";}i:2;a:3:{s:10:"post_title";s:9:"Offerings";s:7:"post_id";i:14;s:9:"post_slug";s:9:"offerings";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:1329;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:16;s:9:"post_slug";s:10:"contact-us";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#0d8359";i:1;s:7:"#069966";i:2;s:7:"#171e30";i:3;s:7:"#161820";i:4;s:7:"#f5f5de";i:5;s:7:"#ffffff";i:6;s:7:"#e2e8f0";i:7;s:7:"#171e30";i:8;s:7:"#94a3b8";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:18:"''Jost'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:18:"''Jost'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:4;a:11:{s:4:"uuid";s:36:"d7c83b9c-b1c1-4a26-8234-4f56d1350ff1";s:4:"name";s:5:"Lotus";s:6:"domain";s:30:"multipurpose9.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:31;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:32;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:9:"Offerings";s:7:"post_id";i:33;s:9:"post_slug";s:9:"offerings";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:452;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:34;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#6000cd";i:1;s:7:"#8b26ff";i:2;s:7:"#0f172a";i:3;s:7:"#454f5e";i:4;s:7:"#f1f5f9";i:5;s:7:"#FFFFFF";i:6;s:7:"#c6cbd2";i:7;s:7:"#0f172a";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:28:"''Libre Franklin'', sans-serif";s:17:"body-font-variant";s:7:"400,500";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:16;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:28:"''Libre Franklin'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:5;a:11:{s:4:"uuid";s:36:"6d5b7b24-0dac-4cd7-8d73-7804765d101b";s:4:"name";s:7:"Stellar";s:6:"domain";s:32:"multipurpose-10.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:9;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:12;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:14;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:1847;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:16;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ba1849";i:1;s:7:"#cb1b4f";i:2;s:7:"#000000";i:3;s:16:"rgba(0,0,0,0.65)";i:4;s:7:"#f6f6f6";i:5;s:7:"#ffffff";i:6;s:15:"rgba(0,0,0,0.1)";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''Manrope'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''Manrope'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";s:5:"light";}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:6;a:11:{s:4:"uuid";s:36:"12ba44a0-fc79-4fb0-ac20-7c2eeede6854";s:4:"name";s:4:"Leaf";s:6:"domain";s:32:"multipurpose-11.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:32;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:33;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:34;s:9:"post_slug";s:7:"service";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:522;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:35;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#f18200";i:1;s:7:"#ff9c27";i:2;s:7:"#000000";i:3;s:7:"#5b5b5b";i:4;s:7:"#f7f7f7";i:5;s:7:"#ffffff";i:6;s:7:"#d7d7d7";i:7;s:7:"#0c0e0a";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:27:"''Space Grotesk'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:7;a:11:{s:4:"uuid";s:36:"ce672de3-9c1b-4f9a-b2f4-be5c2d4fe175";s:4:"name";s:4:"Fern";s:6:"domain";s:31:"multipurpose12.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:33;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:35;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:36;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:298;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:37;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffde2f";i:1;s:7:"#ebc500";i:2;s:7:"#ffffff";i:3;s:7:"#ffffff";i:4;s:7:"#0b2329";i:5;s:7:"#091d22";i:6;s:7:"#585858";i:7;s:7:"#030c0e";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:25:"''Inter Tight'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''Archivo'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:8;a:11:{s:4:"uuid";s:36:"beadd1ca-7ced-4ae8-870f-b78985538ae5";s:4:"name";s:4:"Vine";s:6:"domain";s:31:"multipurpose13.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:9;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:12;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:14;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:1239;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:16;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#eb3e6c";i:1;s:7:"#e63059";i:2;s:7:"#22413a";i:3;s:7:"#59716b";i:4;s:7:"#fff6ec";i:5;s:7:"#ffffff";i:6;s:18:"rgba(34,65,58,0.1)";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Open Sans'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:26:"''Libre Baskerville'', serif";s:20:"headings-font-weight";s:7:"inherit";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:9;a:11:{s:4:"uuid";s:36:"aa69c22d-9bdf-4633-9015-33796bbdb64b";s:4:"name";s:5:"Poppy";s:6:"domain";s:31:"multipurpose15.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:79;s:9:"post_slug";s:4:"79-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:57;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:59;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:899;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:61;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#f36a1d";i:1;s:7:"#bf4a00";i:2;s:7:"#000000";i:3;s:7:"#2b2b2b";i:4;s:7:"#f5f5f5";i:5;s:7:"#FFFFFF";i:6;s:7:"#cacaca";i:7;s:7:"#080b00";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''DM Sans'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:7:"inherit";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''Manrope'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:10;a:11:{s:4:"uuid";s:36:"7fbee9d1-7960-4294-8a6b-1476f5ad860d";s:4:"name";s:5:"Peony";s:6:"domain";s:31:"multipurpose17.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:56;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:57;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:58;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:60;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:59;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#e76f51";i:1;s:7:"#d66244";i:2;s:7:"#210f0b";i:3;s:7:"#665a57";i:4;s:7:"#f6f6f6";i:5;s:7:"#FFFFFF";i:6;s:7:"#dddddd";i:7;s:7:"#210f0b";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:7:"inherit";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:25:"''Playfair Display'', serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:11;a:11:{s:4:"uuid";s:36:"c6fe2a6a-d9e7-4acb-a5ae-208a03764271";s:4:"name";s:8:"Daffodil";s:6:"domain";s:31:"multipurpose18.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:23;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:25;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:27;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:118;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:29;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#fe7239";i:1;s:7:"#f25617";i:2;s:7:"#000000";i:3;s:7:"#3c3c3c";i:4;s:7:"#f6f6f6";i:5;s:7:"#FFFFFF";i:6;s:7:"#cdcdcd";i:7;s:7:"#170a06";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''Poppins'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:16;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:27:"''Source Sans 3'', sans-serif";s:20:"headings-font-weight";s:7:"inherit";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:12;a:11:{s:4:"uuid";s:36:"5c62352f-beb2-44cb-9439-19dd8914e8ae";s:4:"name";s:6:"Zinnia";s:6:"domain";s:31:"multipurpose19.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:255;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:256;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:257;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:258;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:259;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#38a3a5";i:1;s:7:"#2a9294";i:2;s:7:"#081d1e";i:3;s:7:"#545f5f";i:4;s:7:"#f2f7f7";i:5;s:7:"#FFFFFF";i:6;s:7:"#d7e1e1";i:7;s:7:"#081d1e";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Quicksand'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:23:"''Quicksand'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:7:"500,600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:13;a:11:{s:4:"uuid";s:36:"2bd12ae1-6783-476a-bdb5-e4ce84a046b4";s:4:"name";s:5:"Pansy";s:6:"domain";s:31:"multipurpose20.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:281;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:282;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:283;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:284;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:285;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#117256";i:1;s:7:"#0d654b";i:2;s:7:"#16251e";i:3;s:7:"#4e5753";i:4;s:7:"#eff2f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#d3d8d5";i:7;s:7:"#16251e";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:24:"''Montserrat'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:25:"''Reddit Sans'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:14;a:11:{s:4:"uuid";s:36:"268d69d8-11ba-4260-8b2e-599071703331";s:4:"name";s:5:"Orion";s:6:"domain";s:31:"multipurpose22.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:259;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:260;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:261;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:262;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:263;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#fe5b2c";i:1;s:7:"#f25617";i:2;s:7:"#1b3942";i:3;s:7:"#475f66";i:4;s:7:"#f7f7f7";i:5;s:7:"#FFFFFF";i:6;s:7:"#475f66";i:7;s:7:"#1b3942";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:25:"''Nunito Sans'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:17;s:6:"tablet";i:16;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:15:"''Domine'', serif";s:20:"headings-font-weight";s:7:"inherit";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:15;a:11:{s:4:"uuid";s:36:"43fb0bf6-ab93-4b85-a4dc-c57208d14a94";s:4:"name";s:6:"Cactus";s:6:"domain";s:31:"multipurpose23.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:50;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:52;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:53;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:91;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:54;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#0197af";i:1;s:7:"#00afcb";i:2;s:7:"#090909";i:3;s:7:"#545454";i:4;s:7:"#eff6f7";i:5;s:7:"#FFFFFF";i:6;s:7:"#cdcdcd";i:7;s:7:"#011114";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Quicksand'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:23:"''Source Serif 4'', serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:16;a:11:{s:4:"uuid";s:36:"da5c6773-639a-4500-82ef-079421bcc1e7";s:4:"name";s:4:"Pine";s:6:"domain";s:31:"multipurpose24.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:278;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:279;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:280;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:281;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:282;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ff624d";i:1;s:7:"#ea4e49";i:2;s:7:"#090909";i:3;s:7:"#545454";i:4;s:7:"#f9f3f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#bbbbbb";i:7;s:7:"#090909";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"600";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Inter'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:17;a:11:{s:4:"uuid";s:36:"3fd95987-f946-45a5-98d7-31a0bcd3ea18";s:4:"name";s:5:"Cedar";s:6:"domain";s:31:"multipurpose25.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:35;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:36;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:37;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:38;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:39;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#4eb215";i:1;s:7:"#71c144";i:2;s:7:"#071f1b";i:3;s:7:"#3c4040";i:4;s:7:"#ebebe0";i:5;s:7:"#fafafa";i:6;s:7:"#d1d1d1";i:7;s:7:"#000000";i:8;s:7:"#03211b";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''DM Sans'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:20:"''Lexend'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:7:"500,600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:18;a:11:{s:4:"uuid";s:36:"cce4d1c6-2c0b-42fd-92b1-babdd89f16d4";s:4:"name";s:6:"Galaxy";s:6:"domain";s:31:"multipurpose21.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:19;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:20;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:21;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:261;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:22;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#0a749f";i:1;s:7:"#05668d";i:2;s:7:"#2a383e";i:3;s:7:"#59686e";i:4;s:7:"#ebf1f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#d3d9dc";i:7;s:7:"#000000";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:18:"''Lato'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:22:"''Urbanist'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"300";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:19;a:11:{s:4:"uuid";s:36:"bbb26b94-bde3-4acd-b7b2-5bb644a86658";s:4:"name";s:6:"Nebula";s:6:"domain";s:31:"multipurpose26.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:15;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:16;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:18;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:19;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:20;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:1:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#00989f";i:1;s:7:"#03777d";i:2;s:7:"#071f1b";i:3;s:7:"#3c4040";i:4;s:7:"#f0f6f7";i:5;s:7:"#FFFFFF";i:6;s:7:"#c0c0c0";i:7;s:7:"#021315";i:8;s:7:"#03211b";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''Manrope'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''Manrope'', sans-serif";s:20:"headings-font-weight";s:3:"800";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:20;a:11:{s:4:"uuid";s:36:"07aabb7a-677d-4163-aad3-79dd3000a471";s:4:"name";s:6:"Meteor";s:6:"domain";s:31:"multipurpose28.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:306;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:307;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:308;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:309;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:310;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#26a96c";i:1;s:7:"#19975c";i:2;s:7:"#0b160b";i:3;s:7:"#586a62";i:4;s:7:"#eaf8f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#d0dfd8";i:7;s:7:"#0b160b";i:8;s:7:"#111111";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Quicksand'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:23:"''Quicksand'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:21;a:11:{s:4:"uuid";s:36:"d9dcc64e-a34c-4ab9-a5b7-e0fe366dfad9";s:4:"name";s:9:"Celestial";s:6:"domain";s:31:"multipurpose27.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:14;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:15;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:17;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:18;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:19;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#00a7a7";i:1;s:7:"#008686";i:2;s:7:"#020202";i:3;s:7:"#353535";i:4;s:7:"#e7f2f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#c0c0c0";i:7;s:7:"#011114";i:8;s:7:"#000000";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Rubik'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:17;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Rubik'', sans-serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:22;a:11:{s:4:"uuid";s:36:"534c28c0-7422-4839-baf9-ec35e3810321";s:4:"name";s:5:"Cedar";s:6:"domain";s:31:"multipurpose29.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:23;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:24;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:26;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:27;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:28;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffc03d";i:1;s:7:"#ffae00";i:2;s:7:"#212d45";i:3;s:7:"#4b4f58";i:4;s:7:"#f7f7f7";i:5;s:7:"#FFFFFF";i:6;s:7:"#f7f7f7";i:7;s:7:"#212d45";i:8;s:7:"#212d45";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:16;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Inter'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"500";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:23;a:11:{s:4:"uuid";s:36:"876ae376-d570-4d79-be84-19e5383855ed";s:4:"name";s:6:"Bonsai";s:6:"domain";s:31:"multipurpose30.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:36;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:37;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:38;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:39;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:40;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ff6d59";i:1;s:7:"#e24c37";i:2;s:7:"#000000";i:3;s:7:"#5b5b5b";i:4;s:7:"#f8f1f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#b7b7b7";i:7;s:7:"#292020";i:8;s:7:"#292020";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''Manrope'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''Manrope'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:24;a:11:{s:4:"uuid";s:36:"85d9d03f-a115-4fe7-ba98-69f3c5227faf";s:4:"name";s:5:"Acorn";s:6:"domain";s:32:"multipurpose-31.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:17;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:18;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:20;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:22;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:23;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#008f9e";i:1;s:7:"#047b86";i:2;s:7:"#0c0c0c";i:3;s:7:"#353131";i:4;s:7:"#e4efed";i:5;s:7:"#f4f9fa";i:6;s:7:"#8a8a8a";i:7;s:7:"#011213";i:8;s:7:"#302523";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''DM Sans'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:17:"''Fraunces'', serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:25;a:11:{s:4:"uuid";s:36:"32541247-4478-4e20-9529-8587fdbab5fd";s:4:"name";s:6:"Almond";s:6:"domain";s:32:"multipurpose-32.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:19;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:21;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:22;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:30;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:31;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#223035";i:1;s:7:"#f47a55";i:2;s:7:"#223035";i:3;s:7:"#4c575b";i:4;s:7:"#f1f3f1";i:5;s:7:"#FFFFFF";i:6;s:7:"#f1f3f1";i:7;s:7:"#223035";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Heebo'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:17;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:19:"''Inter'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"600";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:26;a:11:{s:4:"uuid";s:36:"ee04ba64-4b1f-4613-b8b1-c89986d83784";s:4:"name";s:4:"Reef";s:6:"domain";s:32:"multipurpose-33.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:41;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:42;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:43;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:44;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:45;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#1b9156";i:1;s:7:"#2ac578";i:2;s:7:"#013839";i:3;s:7:"#494d4d";i:4;s:7:"#f2f7f5";i:5;s:7:"#FFFFFF";i:6;s:7:"#b6c4bd";i:7;s:7:"#000f0f";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''DM Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:27;a:11:{s:4:"uuid";s:36:"8af201d0-f647-43a8-9bdb-10f2707106d0";s:4:"name";s:6:"Sprout";s:6:"domain";s:32:"multipurpose-34.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:28;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:29;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:30;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:31;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:32;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ee5959";i:1;s:7:"#d84545";i:2;s:7:"#001f3f";i:3;s:7:"#494d4d";i:4;s:7:"#f9f3f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#d5c9c9";i:7;s:7:"#080000";i:8;s:7:"#292020";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Inter'', sans-serif";s:17:"body-font-variant";s:3:"500";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:31:"''Plus Jakarta Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:28;a:11:{s:4:"uuid";s:36:"4c9fc948-0b55-4673-a6ee-4e9effdb3f6d";s:4:"name";s:4:"Sage";s:6:"domain";s:31:"multipurpose37.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:31;s:9:"post_slug";s:6:"home-2";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:32;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:33;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:34;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:36;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#446c43";i:1;s:7:"#729370";i:2;s:7:"#19231c";i:3;s:7:"#434844";i:4;s:7:"#faf6ee";i:5;s:7:"#fdfdfd";i:6;s:7:"#cccccc";i:7;s:7:"#00080a";i:8;s:7:"#446c43";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:21:"''Poppins'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:4:"1.65";s:20:"headings-font-family";s:21:"''Poppins'', sans-serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:29;a:11:{s:4:"uuid";s:36:"3c9a5eed-760a-4fc5-b70d-fa10269b9343";s:4:"name";s:7:"Petunia";s:6:"domain";s:31:"multipurpose36.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:23;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:24;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:25;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:26;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:27;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#002e24";i:1;s:7:"#007e60";i:2;s:7:"#0b141f";i:3;s:7:"#3a414a";i:4;s:7:"#f0f9f5";i:5;s:7:"#FFFFFF";i:6;s:7:"#f0f9f5";i:7;s:7:"#002e24";i:8;s:7:"#111111";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:27:"''Source Sans 3'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:18;s:6:"tablet";i:17;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:25:"''Nunito Sans'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:7:"600,700";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:30;a:11:{s:4:"uuid";s:36:"e8c47be3-5503-4102-8260-5d543dd7bfb5";s:4:"name";s:8:"Foxglove";s:6:"domain";s:31:"multipurpose43.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:296;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:298;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:299;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:300;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:301;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ff6464";i:1;s:7:"#f14e4e";i:2;s:7:"#071f1b";i:3;s:7:"#393939";i:4;s:7:"#faf6f6";i:5;s:7:"#FFFFFF";i:6;s:7:"#e4dede";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Work Sans'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:21:"''Belleza'', sans-serif";s:20:"headings-font-weight";s:3:"400";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:31;a:11:{s:4:"uuid";s:36:"e68380fb-aa65-41f7-add6-9ee219003924";s:4:"name";s:5:"Hosta";s:6:"domain";s:31:"multipurpose44.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:38;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:39;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:40;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:41;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:42;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffb650";i:1;s:7:"#ffc26d";i:2;s:7:"#000000";i:3;s:7:"#4e4e4e";i:4;s:7:"#f6f5f2";i:5;s:7:"#FFFFFF";i:6;s:7:"#dadada";i:7;s:7:"#000000";i:8;s:7:"#111111";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:20:"''Roboto Slab'', serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:15:"''Besley'', serif";s:20:"headings-font-weight";s:3:"500";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:3:"400";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:32;a:11:{s:4:"uuid";s:36:"528664a1-403b-484b-a558-8a7bd38b6309";s:4:"name";s:9:"Supernova";s:6:"domain";s:31:"multipurpose45.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:289;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:290;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:291;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:292;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:293;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#0067FF";i:1;s:7:"#005EE9";i:2;s:7:"#0f172a";i:3;s:7:"#364151";i:4;s:7:"#E7F6FF";i:5;s:7:"#FFFFFF";i:6;s:7:"#D1DAE5";i:7;s:7:"#070614";i:8;s:7:"#222222";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:26:"''Josefin Sans'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:26:"''Josefin Sans'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:0;}i:33;a:11:{s:4:"uuid";s:36:"1142a4ff-e76e-4c14-94a8-d8f9e1e9fa7c";s:4:"name";s:7:"Stellar";s:6:"domain";s:31:"multipurpose46.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:282;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:292;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:294;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:807;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:296;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#4e9d4c";i:1;s:7:"#3d933b";i:2;s:7:"#001d4a";i:3;s:7:"#697a96";i:4;s:7:"#f1f4f9";i:5;s:7:"#FFFFFF";i:6;s:7:"#d9e3f3";i:7;s:7:"#001d4a";i:8;s:7:"#b52765";}s:4:"flag";b:0;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:19:"''Cabin'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:14;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:19:"''Cabin'', sans-serif";s:20:"headings-font-weight";s:3:"700";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}i:34;a:11:{s:4:"uuid";s:36:"25db608a-d521-4679-8062-f0231fbaa3a5";s:4:"name";s:7:"Sparkle";s:6:"domain";s:31:"multipurpose47.websitedemos.top";s:11:"pages_count";i:5;s:5:"pages";a:5:{i:0;a:3:{s:10:"post_title";s:4:"Home";s:7:"post_id";i:9;s:9:"post_slug";s:4:"home";}i:1;a:3:{s:10:"post_title";s:5:"About";s:7:"post_id";i:11;s:9:"post_slug";s:5:"about";}i:2;a:3:{s:10:"post_title";s:8:"Services";s:7:"post_id";i:12;s:9:"post_slug";s:8:"services";}i:3;a:3:{s:10:"post_title";s:4:"Blog";s:7:"post_id";i:13;s:9:"post_slug";s:4:"blog";}i:4;a:3:{s:10:"post_title";s:7:"Contact";s:7:"post_id";i:14;s:9:"post_slug";s:7:"contact";}}s:7:"plugins";a:2:{i:0;a:2:{s:4:"name";s:29:"ultimate-addons-for-gutenberg";s:5:"title";s:7:"Spectra";}i:1;a:2:{s:4:"name";s:9:"sureforms";s:5:"title";s:9:"SureForms";}}s:7:"content";a:0:{}s:15:"design_defaults";a:3:{s:13:"color_palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ff5635";i:1;s:7:"#ff3108";i:2;s:7:"#27061e";i:3;s:7:"#786473";i:4;s:7:"#f9f6f3";i:5;s:7:"#FFFFFF";i:6;s:7:"#cbcbcb";i:7;s:7:"#190203";i:8;s:7:"#5a0f10";}s:4:"flag";b:1;}s:10:"typography";a:10:{s:7:"default";b:1;s:16:"body-font-family";s:23:"''Quicksand'', sans-serif";s:17:"body-font-variant";s:0:"";s:16:"body-font-weight";s:3:"500";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:14;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-line-height";s:0:"";s:20:"headings-font-family";s:27:"''IBM Plex Sans'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"headings-line-height";s:0:"";s:21:"headings-font-variant";s:0:"";}s:12:"color_scheme";a:0:{}}s:8:"features";a:5:{s:4:"blog";s:3:"yes";s:12:"page-builder";s:3:"yes";s:12:"contact-form";s:3:"yes";s:9:"ecommerce";s:2:"no";s:9:"donations";s:2:"no";}s:13:"features_data";a:2:{s:14:"ecommerce_type";s:8:"surecart";s:19:"ecommerce_supported";a:2:{i:0;s:8:"surecart";i:1;s:11:"woocommerce";}}s:10:"is_premium";i:1;}}}}', 'auto');
INSERT INTO `wp8u_options` VALUES
(248, 'zip_ai_settings', 'a:3:{s:10:"auth_token";s:75:"MTQyNjI3MnxLcWJHenVsQVI2aTZaZ1luZ1VqZlFndXNpQ1phNjBmd3g1RHdCYkVDMzBiM2NhODM";s:9:"zip_token";s:75:"MjU5ODI3MXxwT0RvMUMxTTRsVExqYzJPWDFyVDJDWWg5OE05QVc5dTZ6SXVmUHVBNWZiMmQ5ZTg";s:5:"email";s:21:"fizoholicis@gmail.com";}', 'auto'),
(253, 'zipwp_import_site_details', 'a:28:{s:2:"id";i:1301565;s:4:"uuid";s:36:"36497c38-3aee-4bea-9397-46db94e97950";s:4:"slug";s:17:"tired-tejas-mcta7";s:4:"type";s:2:"ai";s:12:"businessName";s:25:"www.novationinteriors.com";s:12:"businessDesc";s:633:"Novation Interiors is a premier interior design studio operating online at www.novationinteriors.com. This dynamic team, led by a passionate mother-daughter duo, specializes in transforming residential and commercial spaces into personalized sanctuaries. Since their inception, they have gained a reputation for their meticulous attention to detail and a collaborative approach, ensuring that every design reflects the client''s unique lifestyle and personality. Clients choose Novation Interiors for their innovative solutions that seamlessly blend elegance with functionality, making them a top choice for enhancing any environment.";s:4:"name";s:17:"tired-tejas-mcta7";s:5:"title";s:25:"www.novationinteriors.com";s:6:"domain";s:29:"tired-tejas-mcta7.example.com";s:3:"url";s:37:"https://tired-tejas-mcta7.example.com";s:8:"reserved";b:0;s:6:"status";s:11:"in-progress";s:7:"created";s:19:"2025-11-15 05:05:54";s:7:"expires";s:19:"2025-12-15 05:05:54";s:7:"deletes";s:19:"2025-12-18 05:05:54";s:10:"is_expired";b:0;s:10:"is_deleted";b:0;s:10:"expires_in";s:40:"Expires in 29 days, 23 hours, 59 minutes";s:7:"wp_user";s:12:"bim78lrt9jvk";s:11:"wp_password";s:16:"b54Wjw9JiXYx46AZ";s:10:"created_by";a:5:{s:2:"id";i:1114141;s:5:"email";s:21:"fizoholicis@gmail.com";s:4:"name";s:22:"Firoz Shaikh Shadowman";s:10:"first_name";s:12:"Firoz Shaikh";s:9:"last_name";s:9:"Shadowman";}s:4:"fast";b:0;s:7:"project";N;s:12:"is_blueprint";N;s:14:"structure_type";s:4:"site";s:14:"collected_data";a:0:{}s:6:"source";s:17:"starter-templates";s:9:"step_data";a:18:{s:8:"template";s:36:"ce672de3-9c1b-4f9a-b2f4-be5c2d4fe175";s:14:"business_email";s:30:"designer@novationinteriors.com";s:5:"email";s:21:"fizoholicis@gmail.com";s:13:"business_desc";s:633:"Novation Interiors is a premier interior design studio operating online at www.novationinteriors.com. This dynamic team, led by a passionate mother-daughter duo, specializes in transforming residential and commercial spaces into personalized sanctuaries. Since their inception, they have gained a reputation for their meticulous attention to detail and a collaborative approach, ensuring that every design reflects the client''s unique lifestyle and personality. Clients choose Novation Interiors for their innovative solutions that seamlessly blend elegance with functionality, making them a top choice for enhancing any environment.";s:13:"business_name";s:25:"www.novationinteriors.com";s:5:"title";s:25:"www.novationinteriors.com";s:14:"business_phone";s:21:"9320464646/7045598686";s:16:"business_address";s:11:"Navi Mumbai";s:17:"business_category";s:17:"Interior Designer";s:22:"business_category_name";s:17:"Interior Designer";s:13:"image_keyword";a:5:{i:0;s:15:"interior design";i:1;s:18:"residential spaces";i:2;s:17:"commercial spaces";i:3;s:18:"personalized decor";i:4;s:19:"functional elegance";}s:15:"social_profiles";a:0:{}s:6:"images";a:16:{i:0;a:11:{s:2:"id";s:7:"1643383";s:3:"url";s:73:"https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:31:"interior-design-of-home-1643383";s:17:"download_location";s:0:"";}i:1;a:11:{s:2:"id";s:7:"1457842";s:3:"url";s:73:"https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.";s:10:"author_url";s:28:"https://www.pexels.com/@jvdm";s:11:"author_name";s:19:"Jean van der Meulen";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:28:"photo-of-living-room-1457842";s:17:"download_location";s:0:"";}i:2;a:11:{s:2:"id";s:7:"1571460";s:3:"url";s:73:"https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:88:"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:34:"interior-design-of-a-house-1571460";s:17:"download_location";s:0:"";}i:3;a:11:{s:2:"id";s:7:"1571453";s:3:"url";s:73:"https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:88:"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:62:"two-chairs-with-glass-table-on-living-room-near-window-1571453";s:17:"download_location";s:0:"";}i:4;a:11:{s:2:"id";s:6:"271816";s:3:"url";s:71:"https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:95:"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.";s:10:"author_url";s:31:"https://www.pexels.com/@pixabay";s:11:"author_name";s:7:"Pixabay";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:28:"gray-wooden-sideboard-271816";s:17:"download_location";s:0:"";}i:5;a:11:{s:2:"id";s:6:"276724";s:3:"url";s:71:"https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Inviting living room interior featuring modern design with cozy furnishings and stylish decor.";s:10:"author_url";s:31:"https://www.pexels.com/@pixabay";s:11:"author_name";s:7:"Pixabay";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:32:"turned-off-flat-screen-tv-276724";s:17:"download_location";s:0:"";}i:6;a:11:{s:2:"id";s:6:"827518";s:3:"url";s:70:"https://images.pexels.com/photos/827518/pexels-photo-827518.jpeg?w=700";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/827518/pexels-photo-827518.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:80:"Inviting café corner with lush plants and cozy seating, perfect for relaxation.";s:10:"author_url";s:32:"https://www.pexels.com/@valeriya";s:11:"author_name";s:16:"Valeria Boltneva";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:50:"photography-of-table-and-chairs-near-plants-827518";s:17:"download_location";s:0:"";}i:7;a:11:{s:2:"id";s:7:"1129413";s:3:"url";s:72:"https://images.pexels.com/photos/1129413/pexels-photo-1129413.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1129413/pexels-photo-1129413.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:73:"Cozy indoor space with rustic decor, warm lighting, and natural elements.";s:10:"author_url";s:32:"https://www.pexels.com/@valeriya";s:11:"author_name";s:16:"Valeria Boltneva";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:41:"brown-wooden-vase-near-the-window-1129413";s:17:"download_location";s:0:"";}i:8;a:11:{s:2:"id";s:7:"1374125";s:3:"url";s:72:"https://images.pexels.com/photos/1374125/pexels-photo-1374125.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1374125/pexels-photo-1374125.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:110:"A stylish and cozy bedroom featuring green walls, botanical prints, and soft lighting for a contemporary feel.";s:10:"author_url";s:36:"https://www.pexels.com/@julieaagaard";s:11:"author_name";s:13:"julie aagaard";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:40:"two-panel-painting-of-palm-plant-1374125";s:17:"download_location";s:0:"";}i:9;a:11:{s:2:"id";s:7:"4352247";s:3:"url";s:72:"https://images.pexels.com/photos/4352247/pexels-photo-4352247.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/4352247/pexels-photo-4352247.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:112:"A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor.";s:10:"author_url";s:35:"https://www.pexels.com/@maksgelatin";s:11:"author_name";s:18:"Maksim Goncharenok";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:35:"white-couch-on-wooden-floor-4352247";s:17:"download_location";s:0:"";}i:10;a:11:{s:2:"id";s:6:"447592";s:3:"url";s:70:"https://images.pexels.com/photos/447592/pexels-photo-447592.jpeg?w=700";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/447592/pexels-photo-447592.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:111:"Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration.";s:10:"author_url";s:42:"https://www.pexels.com/@medhat-ayad-122846";s:11:"author_name";s:11:"Medhat Ayad";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:51:"round-beige-and-brown-wooden-table-and-chair-447592";s:17:"download_location";s:0:"";}i:11;a:11:{s:2:"id";s:7:"1648771";s:3:"url";s:73:"https://images.pexels.com/photos/1648771/pexels-photo-1648771.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1648771/pexels-photo-1648771.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:69:"Elegant modern interior living room with fireplace and stylish decor.";s:10:"author_url";s:43:"https://www.pexels.com/@vika-glitter-392079";s:11:"author_name";s:12:"Vika Glitter";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:23:"interior-design-1648771";s:17:"download_location";s:0:"";}i:12;a:11:{s:2:"id";s:7:"1571459";s:3:"url";s:73:"https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg?w=1280";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:79:"Spacious modern living room featuring stairs, a TV, and sleek furniture design.";s:10:"author_url";s:32:"https://www.pexels.com/@fotoaibe";s:11:"author_name";s:15:"Vecislavas Popa";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:43:"turned-on-gray-flat-screen-smart-tv-1571459";s:17:"download_location";s:0:"";}i:13;a:11:{s:2:"id";s:7:"1457844";s:3:"url";s:72:"https://images.pexels.com/photos/1457844/pexels-photo-1457844.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/1457844/pexels-photo-1457844.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:87:"Sleek contemporary hallway featuring a stunning glass chandelier and minimalist design.";s:10:"author_url";s:28:"https://www.pexels.com/@jvdm";s:11:"author_name";s:19:"Jean van der Meulen";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:34:"white-downlight-chandelier-1457844";s:17:"download_location";s:0:"";}i:14;a:11:{s:2:"id";s:6:"245208";s:3:"url";s:71:"https://images.pexels.com/photos/245208/pexels-photo-245208.jpeg?w=1280";s:13:"optimized_url";s:96:"https://images.pexels.com/photos/245208/pexels-photo-245208.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:94:"Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements.";s:10:"author_url";s:34:"https://www.pexels.com/@atbo-66986";s:11:"author_name";s:4:"ATBO";s:11:"orientation";s:9:"landscape";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:40:"brown-white-and-blue-wooden-board-245208";s:17:"download_location";s:0:"";}i:15;a:11:{s:2:"id";s:7:"2067638";s:3:"url";s:72:"https://images.pexels.com/photos/2067638/pexels-photo-2067638.jpeg?w=700";s:13:"optimized_url";s:98:"https://images.pexels.com/photos/2067638/pexels-photo-2067638.jpeg?auto=compress&cs=tinysrgb&h=350";s:11:"description";s:93:"Stylish café interior featuring modern décor, green walls, plants, and comfortable seating.";s:10:"author_url";s:47:"https://www.pexels.com/@marta-dzedyshko-1042863";s:11:"author_name";s:15:"Marta Dzedyshko";s:11:"orientation";s:8:"portrait";s:6:"engine";s:6:"pexels";s:10:"engine_url";s:18:"https://pexels.com";s:4:"slug";s:51:"two-female-and-male-sketch-drawings-on-wall-2067638";s:17:"download_location";s:0:"";}}s:8:"language";s:2:"en";s:9:"site_type";s:2:"ai";s:11:"site_source";s:17:"starter-templates";s:13:"site_features";a:7:{i:0;s:4:"blog";i:1;s:12:"page-builder";i:2;s:12:"contact-form";i:3;s:9:"sure-rank";i:4;s:12:"suretriggers";i:5;s:20:"appointment-bookings";i:6;s:9:"live-chat";}s:18:"site_features_data";a:0:{}}}', 'auto'),
(254, 'astra_sites_current_import_template_type', 'ai', 'auto'),
(255, 'astra_sites_batch_process_complete', 'yes', 'auto'),
(261, '__uagb_do_redirect', '', 'auto'),
(262, '__uagb_activated_before', '1', 'auto'),
(263, '__uagb_asset_version', '1763191218', 'auto'),
(264, 'uagb_site_url', 'novationinteriors-com', 'auto'),
(265, 'uagb_block_analytics_status', 'a:1:{s:15:"first_run_check";b:1;}', 'auto'),
(266, '_uagb_allow_file_generation', 'enabled', 'auto'),
(267, 'uagb-version', '2.19.16', 'auto'),
(268, 'spectra_analytics_installed_time', '1763183210', 'off'),
(270, 'action_scheduler_hybrid_store_demarkation', '8', 'auto'),
(271, 'schema-ActionScheduler_StoreSchema', '7.0.1763183233', 'auto'),
(272, 'schema-ActionScheduler_LoggerSchema', '3.0.1763183233', 'auto'),
(273, '__srfm_do_redirect', '', 'auto'),
(274, 'action_scheduler_lock_async-request-runner', '691974243af7b5.71819096|1763275872', 'no'),
(276, 'srfm_database_table_versions', 'a:1:{s:7:"entries";i:1;}', 'auto'),
(277, '_transient_timeout_as-post-store-dependencies-met', '1763269651', 'off'),
(278, '_transient_as-post-store-dependencies-met', 'yes', 'off'),
(280, 'srfm-version', '1.13.2', 'auto'),
(282, 'sureforms_analytics_installed_time', '1763183251', 'off'),
(285, 'rewrite_rules', '', 'auto'),
(288, 'surerank_analytics_installed_time', '1763183262', 'off'),
(291, 'surerank_sitemap_cache_checksum', '767d2f43312789e19f11cbaa89e0ef52fca14360cc34222fb1647fb7cec93ced', 'auto'),
(295, 'surerank_sitemap_cache_updated_checksum', '767d2f43312789e19f11cbaa89e0ef52fca14360cc34222fb1647fb7cec93ced', 'auto'),
(297, 'suretriggers_verify_connection', 'suretriggers_connection_error', 'auto'),
(300, 'latepoint_db_version', '2.3.0', 'auto'),
(301, 'latepoint_redirect_to_wizard', '', 'auto'),
(302, 'wplc_callback_nonce', '_413kNnBjWK9OIuGzik9T3XR4BSLhAc8qNsY_3S__FrY', 'auto'),
(303, 'latepoint_page_customer-cabinet', '8', 'auto'),
(307, '_astra_sites_old_customizer_data', 'a:2:{s:14:"astra-settings";a:2267:{s:17:"blog-single-width";s:7:"default";s:21:"blog-single-max-width";i:1200;s:17:"page-single-width";s:7:"default";s:21:"page-single-max-width";i:1200;s:28:"single-content-images-shadow";b:0;s:30:"single-post-ast-content-layout";s:22:"narrow-width-container";s:25:"single-post-sidebar-style";s:7:"unboxed";s:36:"ast-dynamic-single-post-elements-gap";i:25;s:38:"ast-dynamic-single-post-meta-font-size";a:6:{s:7:"desktop";i:13;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:40:"ast-dynamic-single-post-meta-font-weight";s:3:"600";s:32:"ast-dynamic-single-post-metadata";a:2:{i:0;s:6:"author";i:1;s:4:"date";}s:35:"section-search-page-title-structure";a:2:{i:0;s:31:"section-search-page-title-title";i:1;s:36:"section-search-page-title-breadcrumb";}s:38:"section-search-page-title-custom-title";s:19:"Search Results for:";s:50:"section-search-page-title-found-custom-description";s:44:"Here are the search results for your search.";s:54:"section-search-page-title-not-found-custom-description";s:85:"Sorry, but we could not find anything related to your search terms. Please try again.";s:43:"section-search-page-title-title-font-weight";s:3:"600";s:41:"section-search-page-title-title-font-size";a:6:{s:7:"desktop";i:32;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"ast-search-results-per-page";i:10;s:46:"section-search-page-title-horizontal-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:22:"ast-search-live-search";b:0;s:33:"ast-search-live-search-post-types";a:2:{s:4:"post";i:1;s:4:"page";i:1;}s:19:"blog-post-structure";a:5:{i:0;s:5:"image";i:1;s:5:"title";i:2;s:10:"title-meta";i:3;s:7:"excerpt";i:4;s:9:"read-more";}s:18:"blog-post-per-page";i:10;s:17:"blog-hover-effect";s:7:"zoom-in";s:11:"blog-layout";s:13:"blog-layout-4";s:10:"blog-width";s:7:"default";s:19:"blog-meta-date-type";s:9:"published";s:21:"blog-meta-date-format";s:0:"";s:14:"blog-max-width";i:1200;s:17:"blog-post-content";s:7:"excerpt";s:9:"blog-meta";a:1:{i:0;s:4:"date";}s:23:"post-card-border-radius";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"post-card-featured-overlay";s:0:"";s:19:"blog-category-style";s:7:"default";s:14:"blog-tag-style";s:7:"default";s:27:"blog-post-meta-divider-type";s:1:"/";s:24:"blog-meta-category-style";s:7:"default";s:19:"blog-meta-tag-style";s:7:"default";s:21:"blog-image-ratio-type";s:6:"custom";s:26:"blog-image-ratio-pre-scale";s:3:"4/3";s:29:"blog-image-custom-scale-width";i:4;s:30:"blog-image-custom-scale-height";i:3;s:10:"text-color";s:25:"var(--ast-global-color-3)";s:10:"link-color";s:25:"var(--ast-global-color-0)";s:11:"theme-color";s:25:"var(--ast-global-color-0)";s:12:"link-h-color";s:25:"var(--ast-global-color-1)";s:18:"heading-base-color";s:25:"var(--ast-global-color-2)";s:12:"border-color";s:25:"var(--ast-global-color-6)";s:13:"footer-bg-obj";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:12:"footer-color";s:0:"";s:17:"footer-link-color";s:0:"";s:19:"footer-link-h-color";s:0:"";s:17:"footer-adv-bg-obj";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:21:"footer-adv-text-color";s:0:"";s:21:"footer-adv-link-color";s:0:"";s:23:"footer-adv-link-h-color";s:0:"";s:26:"footer-adv-wgt-title-color";s:0:"";s:12:"button-color";s:25:"var(--ast-global-color-4)";s:14:"button-h-color";s:25:"var(--ast-global-color-4)";s:15:"button-bg-color";s:25:"var(--ast-global-color-0)";s:17:"button-bg-h-color";s:25:"var(--ast-global-color-1)";s:27:"secondary-button-bg-h-color";s:7:"#ffffff";s:25:"secondary-button-bg-color";s:0:"";s:22:"secondary-button-color";s:7:"#ffffff";s:24:"secondary-button-h-color";s:25:"var(--ast-global-color-4)";s:20:"theme-button-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"36";s:6:"bottom";s:2:"16";s:4:"left";s:2:"36";}s:6:"tablet";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"32";s:6:"bottom";s:2:"16";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"14";s:5:"right";s:2:"28";s:6:"bottom";s:2:"14";s:4:"left";s:2:"28";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"secondary-theme-button-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"16";s:5:"right";s:2:"36";s:6:"bottom";s:2:"16";s:4:"left";s:2:"36";}s:6:"tablet";a:4:{s:3:"top";s:2:"18";s:5:"right";s:2:"32";s:6:"bottom";s:2:"18";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"15";s:5:"right";s:2:"28";s:6:"bottom";s:2:"15";s:4:"left";s:2:"28";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"button-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"secondary-button-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"theme-button-border-group-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:47:"secondary-theme-button-border-group-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:17:"footer-sml-layout";s:19:"footer-sml-layout-1";s:20:"footer-sml-section-1";s:6:"custom";s:27:"footer-sml-section-1-credit";s:68:"Copyright © [current_year] [site_title] | Powered by [theme_author]";s:20:"footer-sml-section-2";s:0:"";s:27:"footer-sml-section-2-credit";s:68:"Copyright © [current_year] [site_title] | Powered by [theme_author]";s:27:"footer-sml-dist-equal-align";b:1;s:18:"footer-sml-divider";i:1;s:24:"footer-sml-divider-color";s:7:"#7a7a7a";s:19:"footer-layout-width";s:7:"content";s:22:"ast-header-retina-logo";s:0:"";s:17:"use-logo-svg-icon";b:0;s:13:"logo-svg-icon";a:2:{s:4:"type";s:0:"";s:5:"value";s:0:"";}s:23:"logo-svg-site-title-gap";a:3:{s:7:"desktop";s:1:"5";s:6:"tablet";s:1:"5";s:6:"mobile";s:1:"5";}s:21:"ast-header-logo-width";s:0:"";s:32:"ast-header-responsive-logo-width";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-color-site-title";s:25:"var(--ast-global-color-2)";s:25:"header-color-h-site-title";s:25:"var(--ast-global-color-2)";s:25:"header-color-site-tagline";s:0:"";s:29:"display-site-title-responsive";a:3:{s:7:"desktop";i:1;s:6:"tablet";i:1;s:6:"mobile";i:1;}s:31:"display-site-tagline-responsive";a:3:{s:7:"desktop";b:0;s:6:"tablet";i:0;s:6:"mobile";i:0;}s:17:"logo-title-inline";b:1;s:19:"disable-primary-nav";b:0;s:14:"header-layouts";s:20:"header-main-layout-1";s:22:"header-main-rt-section";s:4:"none";s:27:"header-display-outside-menu";b:0;s:27:"header-main-rt-section-html";s:27:"<button>Contact Us</button>";s:34:"header-main-rt-section-button-text";s:6:"Button";s:34:"header-main-rt-section-button-link";s:23:"https://www.wpastra.com";s:41:"header-main-rt-section-button-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:35:"header-main-rt-section-button-style";s:12:"theme-button";s:40:"header-main-rt-section-button-text-color";s:0:"";s:40:"header-main-rt-section-button-back-color";s:0:"";s:42:"header-main-rt-section-button-text-h-color";s:0:"";s:42:"header-main-rt-section-button-back-h-color";s:0:"";s:37:"header-main-rt-section-button-padding";a:3:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}}s:41:"header-main-rt-section-button-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:15:"header-main-sep";i:1;s:21:"header-main-sep-color";s:0:"";s:24:"header-main-layout-width";s:7:"content";s:22:"primary-submenu-border";a:4:{s:3:"top";s:1:"2";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:27:"primary-submenu-item-border";b:0;s:23:"primary-submenu-b-color";s:0:"";s:28:"primary-submenu-item-b-color";s:0:"";s:33:"primary-header-button-font-family";s:7:"inherit";s:33:"primary-header-button-font-weight";s:7:"inherit";s:31:"primary-header-button-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"primary-header-button-text-transform";s:0:"";s:33:"primary-header-button-line-height";i:1;s:36:"primary-header-button-letter-spacing";s:0:"";s:22:"header-main-menu-label";s:0:"";s:22:"header-main-menu-align";s:6:"inline";s:39:"header-main-submenu-container-animation";s:0:"";s:24:"mobile-header-breakpoint";s:0:"";s:18:"mobile-header-logo";s:0:"";s:24:"mobile-header-logo-width";s:0:"";s:11:"site-layout";s:21:"ast-full-width-layout";s:18:"site-content-width";i:1200;s:26:"narrow-container-max-width";i:750;s:37:"site-layout-outside-bg-obj-responsive";a:3:{s:7:"desktop";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"tablet";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"mobile";a:8:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}}s:25:"content-bg-obj-responsive";a:3:{s:7:"desktop";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}s:6:"tablet";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}s:6:"mobile";a:8:{s:16:"background-color";s:25:"var(--ast-global-color-5)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";s:16:"background-media";s:0:"";}}s:12:"wp-blocks-ui";s:6:"custom";s:24:"wp-blocks-global-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:3:"100";s:5:"right";s:2:"80";s:6:"bottom";s:3:"100";s:4:"left";s:2:"80";}s:6:"tablet";a:4:{s:3:"top";s:2:"50";s:5:"right";s:2:"50";s:6:"bottom";s:2:"50";s:4:"left";s:2:"50";}s:6:"mobile";a:4:{s:3:"top";s:2:"50";s:5:"right";s:2:"30";s:6:"bottom";s:2:"50";s:4:"left";s:2:"30";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"enable-comments-area";b:1;s:22:"comments-box-placement";s:0:"";s:21:"comment-form-position";s:5:"below";s:28:"comments-box-container-width";s:0:"";s:31:"ast-sub-section-comments-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:32:"ast-sub-section-comments-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"2";s:5:"right";s:0:"";s:6:"bottom";s:1:"3";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:30:"single-page-ast-content-layout";s:22:"normal-width-container";s:25:"single-page-content-style";s:7:"unboxed";s:25:"single-post-content-style";s:5:"boxed";s:31:"archive-post-ast-content-layout";s:22:"normal-width-container";s:23:"ast-site-content-layout";s:22:"normal-width-container";s:18:"site-content-style";s:5:"boxed";s:16:"body-font-family";s:25:"''Inter Tight'', sans-serif";s:17:"body-font-variant";s:3:"400";s:16:"body-font-weight";s:3:"400";s:14:"font-size-body";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:16:"body-font-extras";a:6:{s:11:"line-height";s:3:"1.7";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:20:"headings-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:18:"para-margin-bottom";s:0:"";s:23:"underline-content-links";b:1;s:25:"site-accessibility-toggle";b:1;s:33:"site-accessibility-highlight-type";s:6:"dotted";s:39:"site-accessibility-highlight-input-type";s:7:"disable";s:19:"body-text-transform";s:0:"";s:20:"headings-font-family";s:21:"''Archivo'', sans-serif";s:20:"headings-font-weight";s:3:"600";s:20:"font-size-site-title";a:6:{s:7:"desktop";i:22;s:6:"tablet";i:20;s:6:"mobile";i:18;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"font-size-site-tagline";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"single-post-outside-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:2:"40";s:5:"right";s:1:"0";s:6:"bottom";s:2:"20";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:2:"30";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"font-size-page-title";a:6:{s:7:"desktop";i:22;s:6:"tablet";i:22;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:18:"font-size-post-tax";a:6:{s:7:"desktop";i:14;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"font-size-post-meta";a:6:{s:7:"desktop";i:13;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h1";a:6:{s:7:"desktop";i:56;s:6:"tablet";i:52;s:6:"mobile";i:35;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h2";a:6:{s:7:"desktop";i:40;s:6:"tablet";i:36;s:6:"mobile";i:30;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h3";a:6:{s:7:"desktop";i:23;s:6:"tablet";i:24;s:6:"mobile";i:22;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h4";a:6:{s:7:"desktop";i:21;s:6:"tablet";i:20;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h5";a:6:{s:7:"desktop";i:18;s:6:"tablet";i:17;s:6:"mobile";i:16;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:12:"font-size-h6";a:6:{s:7:"desktop";i:16;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"site-sidebar-layout";s:10:"no-sidebar";s:18:"site-sidebar-width";i:30;s:26:"single-page-sidebar-layout";s:10:"no-sidebar";s:26:"single-post-sidebar-layout";s:10:"no-sidebar";s:27:"archive-post-sidebar-layout";s:10:"no-sidebar";s:19:"site-sticky-sidebar";b:0;s:18:"site-sidebar-style";s:7:"unboxed";s:25:"single-page-sidebar-style";s:7:"unboxed";s:26:"archive-post-sidebar-style";s:7:"unboxed";s:10:"footer-adv";s:8:"disabled";s:23:"footer-adv-border-width";s:0:"";s:23:"footer-adv-border-color";s:7:"#7a7a7a";s:30:"mobile-header-toggle-btn-style";s:7:"outline";s:23:"hide-custom-menu-mobile";i:1;s:27:"mobile-header-toggle-target";s:4:"icon";s:19:"enable-scroll-to-id";b:1;s:37:"ast-dynamic-single-download-structure";a:3:{i:0;s:33:"ast-dynamic-single-download-title";i:1;s:32:"ast-dynamic-single-download-meta";i:2;s:33:"ast-dynamic-single-download-image";}s:20:"enable-related-posts";b:1;s:19:"related-posts-title";s:13:"Related Posts";s:29:"releted-posts-title-alignment";s:4:"left";s:25:"related-posts-total-count";i:2;s:28:"enable-related-posts-excerpt";b:0;s:27:"related-posts-box-placement";s:7:"default";s:30:"related-posts-outside-location";s:5:"above";s:29:"related-posts-container-width";s:0:"";s:27:"related-posts-excerpt-count";i:25;s:22:"related-posts-based-on";s:10:"categories";s:22:"related-posts-order-by";s:4:"date";s:19:"related-posts-order";s:3:"asc";s:29:"related-posts-grid-responsive";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}s:23:"related-posts-structure";a:2:{i:0;s:14:"featured-image";i:1;s:10:"title-meta";}s:23:"related-posts-tag-style";s:4:"none";s:28:"related-posts-category-style";s:4:"none";s:25:"related-posts-date-format";s:0:"";s:28:"related-posts-meta-date-type";s:9:"published";s:32:"related-posts-author-avatar-size";s:0:"";s:27:"related-posts-author-avatar";b:0;s:33:"related-posts-author-prefix-label";s:3:"By ";s:24:"related-posts-image-size";s:4:"full";s:38:"related-posts-image-custom-scale-width";i:4;s:39:"related-posts-image-custom-scale-height";i:3;s:35:"related-posts-image-ratio-pre-scale";s:4:"16/9";s:30:"related-posts-image-ratio-type";s:6:"custom";s:28:"related-posts-meta-structure";a:2:{i:0;s:8:"category";i:1;s:4:"date";}s:24:"related-posts-text-color";s:25:"var(--ast-global-color-3)";s:24:"related-posts-link-color";s:0:"";s:25:"related-posts-title-color";s:25:"var(--ast-global-color-2)";s:30:"related-posts-background-color";s:0:"";s:24:"related-posts-meta-color";s:0:"";s:30:"related-posts-link-hover-color";s:0:"";s:35:"related-posts-meta-link-hover-color";s:0:"";s:39:"related-posts-section-title-font-family";s:7:"inherit";s:39:"related-posts-section-title-font-weight";s:7:"inherit";s:42:"related-posts-section-title-text-transform";s:0:"";s:39:"related-posts-section-title-line-height";s:0:"";s:39:"related-posts-section-title-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:37:"related-posts-section-title-font-size";a:6:{s:7:"desktop";i:26;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"related-posts-title-font-family";s:7:"inherit";s:31:"related-posts-title-font-weight";s:7:"inherit";s:34:"related-posts-title-text-transform";s:0:"";s:31:"related-posts-title-line-height";s:1:"1";s:29:"related-posts-title-font-size";a:6:{s:7:"desktop";i:20;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"related-posts-title-font-extras";a:6:{s:11:"line-height";s:1:"1";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:30:"related-posts-meta-font-family";s:7:"inherit";s:30:"related-posts-meta-font-weight";s:7:"inherit";s:33:"related-posts-meta-text-transform";s:0:"";s:30:"related-posts-meta-line-height";s:0:"";s:28:"related-posts-meta-font-size";a:6:{s:7:"desktop";s:2:"14";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"related-posts-meta-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"related-posts-content-font-family";s:7:"inherit";s:33:"related-posts-content-font-weight";s:7:"inherit";s:33:"related-posts-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:31:"related-posts-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"ast-sub-section-related-posts-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";d:2.5;s:5:"right";d:2.5;s:6:"bottom";d:2.5;s:4:"left";d:2.5;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:36:"ast-sub-section-related-posts-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";i:2;s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:23:"transparent-header-logo";s:0:"";s:30:"transparent-header-retina-logo";s:0:"";s:26:"different-transparent-logo";i:0;s:33:"different-transparent-retina-logo";i:0;s:29:"transparent-header-logo-width";a:3:{s:7:"desktop";i:150;s:6:"tablet";i:120;s:6:"mobile";i:100;}s:25:"transparent-header-enable";b:0;s:34:"transparent-header-disable-archive";b:1;s:45:"transparent-header-disable-latest-posts-index";i:1;s:29:"transparent-header-on-devices";s:4:"both";s:27:"transparent-header-main-sep";i:1;s:33:"transparent-header-main-sep-color";s:25:"var(--ast-global-color-6)";s:27:"transparent-header-bg-color";s:0:"";s:35:"transparent-header-color-site-title";s:0:"";s:37:"transparent-header-color-h-site-title";s:0:"";s:25:"transparent-menu-bg-color";s:0:"";s:22:"transparent-menu-color";s:0:"";s:24:"transparent-menu-h-color";s:0:"";s:28:"transparent-submenu-bg-color";s:0:"";s:25:"transparent-submenu-color";s:0:"";s:27:"transparent-submenu-h-color";s:0:"";s:29:"transparent-header-logo-color";s:0:"";s:38:"transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"hba-transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"hbb-transparent-header-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:46:"transparent-header-color-site-title-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:48:"transparent-header-color-h-site-title-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"transparent-menu-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"transparent-menu-color-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:35:"transparent-menu-h-color-responsive";a:3:{s:7:"desktop";s:21:"rgba(255,255,255,0.8)";s:6:"tablet";s:25:"var(--ast-global-color-0)";s:6:"mobile";s:0:"";}s:39:"transparent-submenu-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"transparent-submenu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:38:"transparent-submenu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:49:"transparent-content-section-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:49:"transparent-content-section-link-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:51:"transparent-content-section-link-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"breadcrumb-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"breadcrumb-active-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"breadcrumb-hover-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"breadcrumb-separator-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:19:"breadcrumb-bg-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:18:"breadcrumb-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"breadcrumb-font-family";s:7:"inherit";s:22:"breadcrumb-font-weight";s:7:"inherit";s:20:"breadcrumb-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"breadcrumb-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:29:"breadcrumb-separator-selector";s:5:"\\003E";s:20:"breadcrumb-separator";s:5:"\\00bb";s:20:"scroll-to-top-enable";b:1;s:23:"scroll-to-top-icon-size";i:15;s:27:"scroll-to-top-icon-position";s:5:"right";s:24:"scroll-to-top-on-devices";s:4:"both";s:32:"scroll-to-top-icon-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"scroll-to-top-icon-color";s:25:"var(--ast-global-color-4)";s:26:"scroll-to-top-icon-h-color";s:25:"var(--ast-global-color-4)";s:27:"scroll-to-top-icon-bg-color";s:25:"var(--ast-global-color-0)";s:29:"scroll-to-top-icon-h-bg-color";s:25:"var(--ast-global-color-0)";s:8:"h1-color";s:0:"";s:8:"h2-color";s:0:"";s:8:"h3-color";s:0:"";s:8:"h4-color";s:0:"";s:8:"h5-color";s:0:"";s:8:"h6-color";s:0:"";s:14:"font-family-h1";s:7:"inherit";s:14:"font-weight-h1";s:7:"inherit";s:14:"font-extras-h1";a:6:{s:11:"line-height";s:3:"1.2";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h2";s:7:"inherit";s:14:"font-weight-h2";s:7:"inherit";s:14:"font-extras-h2";a:6:{s:11:"line-height";s:3:"1.3";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h3";s:7:"inherit";s:14:"font-weight-h3";s:7:"inherit";s:14:"font-extras-h3";a:6:{s:11:"line-height";s:3:"1.3";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h4";s:7:"inherit";s:14:"font-weight-h4";s:7:"inherit";s:14:"font-extras-h4";a:6:{s:11:"line-height";s:4:"1.25";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h5";s:7:"inherit";s:14:"font-weight-h5";s:7:"inherit";s:14:"font-extras-h5";a:6:{s:11:"line-height";s:3:"1.6";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:14:"font-family-h6";s:20:"''Outfit'', sans-serif";s:14:"font-weight-h6";s:3:"600";s:14:"font-extras-h6";a:6:{s:11:"line-height";s:3:"1.6";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:1:"2";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:18:"font-weight-button";s:3:"700";s:28:"secondary-font-weight-button";s:3:"700";s:18:"font-family-button";s:7:"inherit";s:28:"secondary-font-family-button";s:7:"inherit";s:16:"font-size-button";a:6:{s:7:"desktop";i:15;s:6:"tablet";i:15;s:6:"mobile";i:15;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"secondary-font-size-button";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:18:"font-extras-button";a:6:{s:11:"line-height";i:1;s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:28:"secondary-font-extras-button";a:6:{s:11:"line-height";i:1;s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:20:"header-desktop-items";a:5:{s:5:"popup";a:1:{s:13:"popup_content";a:1:{i:0;s:11:"mobile-menu";}}s:5:"above";a:5:{s:10:"above_left";a:0:{}s:17:"above_left_center";a:0:{}s:12:"above_center";a:0:{}s:18:"above_right_center";a:0:{}s:11:"above_right";a:0:{}}s:7:"primary";a:5:{s:12:"primary_left";a:1:{i:0;s:4:"logo";}s:19:"primary_left_center";a:0:{}s:14:"primary_center";a:1:{i:0;s:6:"menu-1";}s:20:"primary_right_center";a:0:{}s:13:"primary_right";a:1:{i:0;s:8:"button-1";}}s:5:"below";a:5:{s:10:"below_left";a:0:{}s:17:"below_left_center";a:0:{}s:12:"below_center";a:0:{}s:18:"below_right_center";a:0:{}s:11:"below_right";a:0:{}}s:4:"flag";b:1;}s:19:"header-mobile-items";a:5:{s:5:"popup";a:1:{s:13:"popup_content";a:1:{i:0;s:11:"mobile-menu";}}s:5:"above";a:3:{s:10:"above_left";a:0:{}s:12:"above_center";a:0:{}s:11:"above_right";a:0:{}}s:7:"primary";a:3:{s:12:"primary_left";a:1:{i:0;s:4:"logo";}s:14:"primary_center";a:0:{}s:13:"primary_right";a:1:{i:0;s:14:"mobile-trigger";}}s:5:"below";a:3:{s:10:"below_left";a:0:{}s:12:"below_center";a:0:{}s:11:"below_right";a:0:{}}s:4:"flag";b:0;}s:27:"hb-header-main-layout-width";s:7:"content";s:16:"hb-header-height";a:3:{s:7:"desktop";i:100;s:6:"tablet";i:90;s:6:"mobile";i:80;}s:8:"hb-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:18:"hb-header-main-sep";i:0;s:24:"hb-header-main-sep-color";s:7:"#eaeaea";s:25:"hb-header-main-menu-align";s:6:"inline";s:27:"hb-header-bg-obj-responsive";a:3:{s:7:"desktop";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:17:"hb-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:3:"1.5";s:5:"right";s:0:"";s:6:"bottom";s:3:"1.5";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:1:"1";s:5:"right";s:0:"";s:6:"bottom";s:1:"1";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:17:"hba-header-layout";s:21:"above-header-layout-1";s:17:"hba-header-height";a:3:{s:7:"desktop";i:50;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:9:"hba-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:20:"hba-header-separator";i:1;s:30:"hba-header-bottom-border-color";s:7:"#eaeaea";s:28:"hba-header-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#ffffff";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:32:"hba-header-text-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"hba-header-link-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"hba-header-link-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:18:"hba-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:0:"";s:6:"bottom";s:1:"0";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:3:"0.5";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"em";}s:17:"hbb-header-layout";s:21:"below-header-layout-1";s:17:"hbb-header-height";a:3:{s:7:"desktop";i:60;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:9:"hbb-stack";a:3:{s:7:"desktop";s:5:"stack";s:6:"tablet";s:5:"stack";s:6:"mobile";s:5:"stack";}s:20:"hbb-header-separator";i:1;s:30:"hbb-header-bottom-border-color";s:7:"#eaeaea";s:28:"hbb-header-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#eeeeee";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:18:"hbb-header-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"1";s:5:"right";s:0:"";s:6:"bottom";s:1:"1";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"px";}s:37:"section-footer-builder-layout-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-footer-builder-layout-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-above-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-above-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-below-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-below-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-header-mobile-trigger-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"section-primary-header-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"40";s:6:"bottom";s:0:"";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"32";s:6:"bottom";s:0:"";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:2:"24";s:6:"bottom";s:0:"";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"section-primary-header-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"title_tagline-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"section-header-search-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-account-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-mobile-menu-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"5";s:5:"right";s:2:"32";s:6:"bottom";s:1:"5";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:1:"5";s:5:"right";s:2:"24";s:6:"bottom";s:1:"5";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:33:"section-header-mobile-menu-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"section-above-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-above-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"section-below-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"section-footer-copyright-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-footer-menu-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"section-primary-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:37:"section-primary-footer-builder-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"section-header-woo-cart-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"section-header-woo-cart-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button1-text";s:11:"Get Started";s:26:"header-button1-link-option";a:3:{s:3:"url";s:9:"/contact/";s:7:"new_tab";s:0:"";s:8:"link_rel";s:0:"";}s:26:"header-button1-font-family";s:7:"inherit";s:26:"header-button1-font-weight";s:7:"inherit";s:26:"header-button1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button1-text-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button1-back-color";a:3:{s:7:"desktop";s:18:"rgba(255,220,46,0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button1-text-h-color";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-7)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button1-back-h-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button1-border-size";a:4:{s:3:"top";s:1:"1";s:5:"right";s:1:"1";s:6:"bottom";s:1:"1";s:4:"left";s:1:"1";}s:27:"header-button1-border-color";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button1-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button1-border-radius";s:0:"";s:27:"section-hb-button-1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button1-text";s:6:"Button";s:26:"footer-button1-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button1-font-family";s:7:"inherit";s:26:"footer-button1-font-weight";s:7:"inherit";s:29:"footer-button1-text-transform";s:0:"";s:26:"footer-button1-line-height";s:0:"";s:24:"footer-button1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button1-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button1-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button1-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button1-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button1-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button1-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button1-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-1-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-1-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-1";s:22:"Insert HTML text here.";s:18:"header-html-1color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-1link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-1link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-1";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-1";s:7:"inherit";s:29:"font-family-section-hb-html-1";s:7:"inherit";s:29:"font-extras-section-hb-html-1";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-1";s:22:"Insert HTML text here.";s:18:"footer-html-1color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-1link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-1link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-1-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-1";s:7:"inherit";s:29:"font-family-section-fb-html-1";s:7:"inherit";s:29:"font-extras-section-fb-html-1";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-1-space";a:3:{s:7:"desktop";i:25;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-1-bg-space";s:0:"";s:20:"header-social-1-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-1-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-1-color";a:1:{s:7:"desktop";s:25:"var(--ast-global-color-4)";}s:23:"header-social-1-h-color";a:1:{s:7:"desktop";s:25:"var(--ast-global-color-4)";}s:24:"header-social-1-bg-color";s:0:"";s:26:"header-social-1-bg-h-color";s:0:"";s:28:"header-social-1-label-toggle";b:0;s:26:"header-social-1-color-type";s:6:"custom";s:34:"header-social-1-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-1";a:2:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:16:"instagram-square";s:5:"label";s:9:"Instagram";}i:1;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:14:"facebook-round";s:5:"label";s:8:"Facebook";}i:2;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:1:"#";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}}s:4:"flag";b:1;}s:32:"section-hb-social-icons-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-1-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-1-bg-space";s:0:"";s:20:"footer-social-1-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-1-radius";s:0:"";s:21:"footer-social-1-color";s:0:"";s:23:"footer-social-1-h-color";s:0:"";s:24:"footer-social-1-bg-color";s:0:"";s:26:"footer-social-1-bg-h-color";s:0:"";s:28:"footer-social-1-label-toggle";b:0;s:26:"footer-social-1-color-type";s:6:"custom";s:27:"footer-social-1-brand-color";s:0:"";s:33:"footer-social-1-brand-label-color";s:0:"";s:34:"footer-social-1-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-1";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-1";a:2:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:10:"facebook-f";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}s:4:"flag";b:0;}s:25:"footer-social-1-alignment";a:3:{s:7:"desktop";s:5:"right";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-1-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-1-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-1-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-1-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-1-font-family";s:7:"inherit";s:27:"header-widget-1-font-weight";s:7:"inherit";s:25:"header-widget-1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-1-content-font-family";s:7:"inherit";s:35:"header-widget-1-content-font-weight";s:7:"inherit";s:33:"header-widget-1-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-1-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-1-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-1-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-1-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-1-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-1-font-family";s:7:"inherit";s:27:"footer-widget-1-font-weight";s:7:"inherit";s:30:"footer-widget-1-text-transform";s:0:"";s:27:"footer-widget-1-line-height";s:0:"";s:25:"footer-widget-1-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-1-content-font-family";s:7:"inherit";s:35:"footer-widget-1-content-font-weight";s:7:"inherit";s:35:"footer-widget-1-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-1-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-1";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu1-bg-color";s:0:"";s:18:"header-menu1-color";s:0:"";s:23:"header-menu1-h-bg-color";s:0:"";s:20:"header-menu1-h-color";s:0:"";s:23:"header-menu1-a-bg-color";s:0:"";s:20:"header-menu1-a-color";s:0:"";s:30:"header-menu1-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu1-color-responsive";a:3:{s:7:"desktop";s:7:"#ffffff";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu1-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu1-h-color-responsive";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu1-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu1-a-color-responsive";a:3:{s:7:"desktop";s:25:"var(--ast-global-color-0)";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu1-menu-hover-animation";s:0:"";s:40:"header-menu1-submenu-container-animation";s:0:"";s:24:"section-hb-menu-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu1-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:2:"15";s:6:"bottom";s:1:"0";s:4:"left";s:2:"15";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu1-submenu-item-border";b:0;s:32:"header-menu1-submenu-item-b-size";s:1:"1";s:33:"header-menu1-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu1-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu1-submenu-top-offset";s:0:"";s:26:"header-menu1-submenu-width";s:0:"";s:27:"header-menu1-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu1-menu-stack-on-mobile";b:1;s:22:"header-menu1-font-size";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu1-font-weight";s:3:"600";s:24:"header-menu1-font-family";s:7:"inherit";s:24:"header-menu1-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-1-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button2-text";s:6:"Button";s:26:"header-button2-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button2-font-family";s:7:"inherit";s:26:"header-button2-font-weight";s:7:"inherit";s:26:"header-button2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button2-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button2-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button2-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button2-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button2-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button2-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button2-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button2-border-radius";s:0:"";s:27:"section-hb-button-2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button2-text";s:6:"Button";s:26:"footer-button2-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button2-font-family";s:7:"inherit";s:26:"footer-button2-font-weight";s:7:"inherit";s:29:"footer-button2-text-transform";s:0:"";s:26:"footer-button2-line-height";s:0:"";s:24:"footer-button2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button2-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button2-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button2-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button2-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button2-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button2-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button2-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-2-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-2";s:22:"Insert HTML text here.";s:18:"header-html-2color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-2link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-2link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-2";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-2";s:7:"inherit";s:29:"font-family-section-hb-html-2";s:7:"inherit";s:29:"font-extras-section-hb-html-2";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-2";s:22:"Insert HTML text here.";s:18:"footer-html-2color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-2link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-2link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-2";s:7:"inherit";s:29:"font-family-section-fb-html-2";s:7:"inherit";s:29:"font-extras-section-fb-html-2";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-2-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-2-bg-space";s:0:"";s:20:"header-social-2-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-2-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-2-color";s:0:"";s:23:"header-social-2-h-color";s:0:"";s:24:"header-social-2-bg-color";s:0:"";s:26:"header-social-2-bg-h-color";s:0:"";s:28:"header-social-2-label-toggle";b:0;s:26:"header-social-2-color-type";s:6:"custom";s:34:"header-social-2-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-2";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-2-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-2-bg-space";s:0:"";s:20:"footer-social-2-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-2-radius";s:0:"";s:21:"footer-social-2-color";s:0:"";s:23:"footer-social-2-h-color";s:0:"";s:24:"footer-social-2-bg-color";s:0:"";s:26:"footer-social-2-bg-h-color";s:0:"";s:28:"footer-social-2-label-toggle";b:0;s:26:"footer-social-2-color-type";s:6:"custom";s:27:"footer-social-2-brand-color";s:0:"";s:33:"footer-social-2-brand-label-color";s:0:"";s:34:"footer-social-2-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-2";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-2";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-2-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-2-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-2-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-2-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-2-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-2-font-family";s:7:"inherit";s:27:"header-widget-2-font-weight";s:7:"inherit";s:25:"header-widget-2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-2-content-font-family";s:7:"inherit";s:35:"header-widget-2-content-font-weight";s:7:"inherit";s:33:"header-widget-2-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-2-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-2-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-2-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-2-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-2-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-2-font-family";s:7:"inherit";s:27:"footer-widget-2-font-weight";s:7:"inherit";s:30:"footer-widget-2-text-transform";s:0:"";s:27:"footer-widget-2-line-height";s:0:"";s:25:"footer-widget-2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-2-content-font-family";s:7:"inherit";s:35:"footer-widget-2-content-font-weight";s:7:"inherit";s:35:"footer-widget-2-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-2-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-2";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu2-bg-color";s:0:"";s:18:"header-menu2-color";s:0:"";s:23:"header-menu2-h-bg-color";s:0:"";s:20:"header-menu2-h-color";s:0:"";s:23:"header-menu2-a-bg-color";s:0:"";s:20:"header-menu2-a-color";s:0:"";s:30:"header-menu2-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu2-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu2-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu2-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu2-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu2-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu2-menu-hover-animation";s:0:"";s:40:"header-menu2-submenu-container-animation";s:0:"";s:24:"section-hb-menu-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu2-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu2-submenu-item-border";b:0;s:32:"header-menu2-submenu-item-b-size";s:1:"1";s:33:"header-menu2-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu2-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu2-submenu-top-offset";s:0:"";s:26:"header-menu2-submenu-width";s:0:"";s:27:"header-menu2-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu2-menu-stack-on-mobile";b:1;s:22:"header-menu2-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu2-font-weight";s:7:"inherit";s:24:"header-menu2-font-family";s:7:"inherit";s:24:"header-menu2-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-2-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button3-text";s:6:"Button";s:26:"header-button3-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button3-font-family";s:7:"inherit";s:26:"header-button3-font-weight";s:7:"inherit";s:26:"header-button3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button3-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button3-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button3-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button3-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button3-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button3-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button3-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button3-border-radius";s:0:"";s:27:"section-hb-button-3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button3-text";s:6:"Button";s:26:"footer-button3-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button3-font-family";s:7:"inherit";s:26:"footer-button3-font-weight";s:7:"inherit";s:29:"footer-button3-text-transform";s:0:"";s:26:"footer-button3-line-height";s:0:"";s:24:"footer-button3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button3-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button3-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button3-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button3-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button3-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button3-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button3-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-3-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-3";s:22:"Insert HTML text here.";s:18:"header-html-3color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-3link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-3link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-3";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-3";s:7:"inherit";s:29:"font-family-section-hb-html-3";s:7:"inherit";s:29:"font-extras-section-hb-html-3";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-3";s:22:"Insert HTML text here.";s:18:"footer-html-3color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-3link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-3link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-3";s:7:"inherit";s:29:"font-family-section-fb-html-3";s:7:"inherit";s:29:"font-extras-section-fb-html-3";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-3-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-3-bg-space";s:0:"";s:20:"header-social-3-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-3-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-3-color";s:0:"";s:23:"header-social-3-h-color";s:0:"";s:24:"header-social-3-bg-color";s:0:"";s:26:"header-social-3-bg-h-color";s:0:"";s:28:"header-social-3-label-toggle";b:0;s:26:"header-social-3-color-type";s:6:"custom";s:34:"header-social-3-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-3";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-3-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-3-bg-space";s:0:"";s:20:"footer-social-3-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-3-radius";s:0:"";s:21:"footer-social-3-color";s:0:"";s:23:"footer-social-3-h-color";s:0:"";s:24:"footer-social-3-bg-color";s:0:"";s:26:"footer-social-3-bg-h-color";s:0:"";s:28:"footer-social-3-label-toggle";b:0;s:26:"footer-social-3-color-type";s:6:"custom";s:27:"footer-social-3-brand-color";s:0:"";s:33:"footer-social-3-brand-label-color";s:0:"";s:34:"footer-social-3-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-3";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-3";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-3-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-3-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-3-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-3-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-3-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-3-font-family";s:7:"inherit";s:27:"header-widget-3-font-weight";s:7:"inherit";s:25:"header-widget-3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-3-content-font-family";s:7:"inherit";s:35:"header-widget-3-content-font-weight";s:7:"inherit";s:33:"header-widget-3-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-3-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-3-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-3-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-3-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-3-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-3-font-family";s:7:"inherit";s:27:"footer-widget-3-font-weight";s:7:"inherit";s:30:"footer-widget-3-text-transform";s:0:"";s:27:"footer-widget-3-line-height";s:0:"";s:25:"footer-widget-3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-3-content-font-family";s:7:"inherit";s:35:"footer-widget-3-content-font-weight";s:7:"inherit";s:35:"footer-widget-3-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-3-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-3";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu3-bg-color";s:0:"";s:18:"header-menu3-color";s:0:"";s:23:"header-menu3-h-bg-color";s:0:"";s:20:"header-menu3-h-color";s:0:"";s:23:"header-menu3-a-bg-color";s:0:"";s:20:"header-menu3-a-color";s:0:"";s:30:"header-menu3-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu3-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu3-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu3-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu3-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu3-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu3-menu-hover-animation";s:0:"";s:40:"header-menu3-submenu-container-animation";s:0:"";s:24:"section-hb-menu-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu3-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu3-submenu-item-border";b:0;s:32:"header-menu3-submenu-item-b-size";s:1:"1";s:33:"header-menu3-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu3-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu3-submenu-top-offset";s:0:"";s:26:"header-menu3-submenu-width";s:0:"";s:27:"header-menu3-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu3-menu-stack-on-mobile";b:1;s:22:"header-menu3-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu3-font-weight";s:7:"inherit";s:24:"header-menu3-font-family";s:7:"inherit";s:24:"header-menu3-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-3-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button4-text";s:6:"Button";s:26:"header-button4-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button4-font-family";s:7:"inherit";s:26:"header-button4-font-weight";s:7:"inherit";s:26:"header-button4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button4-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button4-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button4-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button4-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button4-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button4-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button4-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button4-border-radius";s:0:"";s:27:"section-hb-button-4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button4-text";s:6:"Button";s:26:"footer-button4-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button4-font-family";s:7:"inherit";s:26:"footer-button4-font-weight";s:7:"inherit";s:29:"footer-button4-text-transform";s:0:"";s:26:"footer-button4-line-height";s:0:"";s:24:"footer-button4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button4-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button4-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button4-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button4-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button4-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button4-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button4-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-4-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-4";s:22:"Insert HTML text here.";s:18:"header-html-4color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-4link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-4link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-4";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-4";s:7:"inherit";s:29:"font-family-section-hb-html-4";s:7:"inherit";s:29:"font-extras-section-hb-html-4";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-4";s:22:"Insert HTML text here.";s:18:"footer-html-4color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-4link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-4link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-4";s:7:"inherit";s:29:"font-family-section-fb-html-4";s:7:"inherit";s:29:"font-extras-section-fb-html-4";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-4-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-4-bg-space";s:0:"";s:20:"header-social-4-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-4-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-4-color";s:0:"";s:23:"header-social-4-h-color";s:0:"";s:24:"header-social-4-bg-color";s:0:"";s:26:"header-social-4-bg-h-color";s:0:"";s:28:"header-social-4-label-toggle";b:0;s:26:"header-social-4-color-type";s:6:"custom";s:34:"header-social-4-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-4";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-4-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-4-bg-space";s:0:"";s:20:"footer-social-4-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-4-radius";s:0:"";s:21:"footer-social-4-color";s:0:"";s:23:"footer-social-4-h-color";s:0:"";s:24:"footer-social-4-bg-color";s:0:"";s:26:"footer-social-4-bg-h-color";s:0:"";s:28:"footer-social-4-label-toggle";b:0;s:26:"footer-social-4-color-type";s:6:"custom";s:27:"footer-social-4-brand-color";s:0:"";s:33:"footer-social-4-brand-label-color";s:0:"";s:34:"footer-social-4-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-4";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-4";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-4-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-4-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-4-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-4-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-4-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-4-font-family";s:7:"inherit";s:27:"header-widget-4-font-weight";s:7:"inherit";s:25:"header-widget-4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-4-content-font-family";s:7:"inherit";s:35:"header-widget-4-content-font-weight";s:7:"inherit";s:33:"header-widget-4-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-4-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-4-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-4-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-4-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-4-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-4-font-family";s:7:"inherit";s:27:"footer-widget-4-font-weight";s:7:"inherit";s:30:"footer-widget-4-text-transform";s:0:"";s:27:"footer-widget-4-line-height";s:0:"";s:25:"footer-widget-4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-4-content-font-family";s:7:"inherit";s:35:"footer-widget-4-content-font-weight";s:7:"inherit";s:35:"footer-widget-4-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-4-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-4";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu4-bg-color";s:0:"";s:18:"header-menu4-color";s:0:"";s:23:"header-menu4-h-bg-color";s:0:"";s:20:"header-menu4-h-color";s:0:"";s:23:"header-menu4-a-bg-color";s:0:"";s:20:"header-menu4-a-color";s:0:"";s:30:"header-menu4-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu4-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu4-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu4-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu4-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu4-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu4-menu-hover-animation";s:0:"";s:40:"header-menu4-submenu-container-animation";s:0:"";s:24:"section-hb-menu-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu4-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu4-submenu-item-border";b:0;s:32:"header-menu4-submenu-item-b-size";s:1:"1";s:33:"header-menu4-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu4-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu4-submenu-top-offset";s:0:"";s:26:"header-menu4-submenu-width";s:0:"";s:27:"header-menu4-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu4-menu-stack-on-mobile";b:1;s:22:"header-menu4-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu4-font-weight";s:7:"inherit";s:24:"header-menu4-font-family";s:7:"inherit";s:24:"header-menu4-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-4-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button5-text";s:6:"Button";s:26:"header-button5-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button5-font-family";s:7:"inherit";s:26:"header-button5-font-weight";s:7:"inherit";s:26:"header-button5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button5-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button5-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button5-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button5-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button5-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button5-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button5-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button5-border-radius";s:0:"";s:27:"section-hb-button-5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button5-text";s:6:"Button";s:26:"footer-button5-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button5-font-family";s:7:"inherit";s:26:"footer-button5-font-weight";s:7:"inherit";s:29:"footer-button5-text-transform";s:0:"";s:26:"footer-button5-line-height";s:0:"";s:24:"footer-button5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button5-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button5-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button5-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button5-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button5-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button5-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button5-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-5-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-5";s:22:"Insert HTML text here.";s:18:"header-html-5color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-5link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-5link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-5";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-5";s:7:"inherit";s:29:"font-family-section-hb-html-5";s:7:"inherit";s:29:"font-extras-section-hb-html-5";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-5";s:22:"Insert HTML text here.";s:18:"footer-html-5color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-5link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-5link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-5";s:7:"inherit";s:29:"font-family-section-fb-html-5";s:7:"inherit";s:29:"font-extras-section-fb-html-5";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-5-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-5-bg-space";s:0:"";s:20:"header-social-5-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-5-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-5-color";s:0:"";s:23:"header-social-5-h-color";s:0:"";s:24:"header-social-5-bg-color";s:0:"";s:26:"header-social-5-bg-h-color";s:0:"";s:28:"header-social-5-label-toggle";b:0;s:26:"header-social-5-color-type";s:6:"custom";s:34:"header-social-5-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-5";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-5-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-5-bg-space";s:0:"";s:20:"footer-social-5-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-5-radius";s:0:"";s:21:"footer-social-5-color";s:0:"";s:23:"footer-social-5-h-color";s:0:"";s:24:"footer-social-5-bg-color";s:0:"";s:26:"footer-social-5-bg-h-color";s:0:"";s:28:"footer-social-5-label-toggle";b:0;s:26:"footer-social-5-color-type";s:6:"custom";s:27:"footer-social-5-brand-color";s:0:"";s:33:"footer-social-5-brand-label-color";s:0:"";s:34:"footer-social-5-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-5";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-5";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-5-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-5-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-5-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-5-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-5-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-5-font-family";s:7:"inherit";s:27:"header-widget-5-font-weight";s:7:"inherit";s:25:"header-widget-5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-5-content-font-family";s:7:"inherit";s:35:"header-widget-5-content-font-weight";s:7:"inherit";s:33:"header-widget-5-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-5-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-5-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-5-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-5-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-5-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-5-font-family";s:7:"inherit";s:27:"footer-widget-5-font-weight";s:7:"inherit";s:30:"footer-widget-5-text-transform";s:0:"";s:27:"footer-widget-5-line-height";s:0:"";s:25:"footer-widget-5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-5-content-font-family";s:7:"inherit";s:35:"footer-widget-5-content-font-weight";s:7:"inherit";s:35:"footer-widget-5-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-5-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-5";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu5-bg-color";s:0:"";s:18:"header-menu5-color";s:0:"";s:23:"header-menu5-h-bg-color";s:0:"";s:20:"header-menu5-h-color";s:0:"";s:23:"header-menu5-a-bg-color";s:0:"";s:20:"header-menu5-a-color";s:0:"";s:30:"header-menu5-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu5-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu5-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu5-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu5-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu5-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu5-menu-hover-animation";s:0:"";s:40:"header-menu5-submenu-container-animation";s:0:"";s:24:"section-hb-menu-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu5-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu5-submenu-item-border";b:0;s:32:"header-menu5-submenu-item-b-size";s:1:"1";s:33:"header-menu5-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu5-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu5-submenu-top-offset";s:0:"";s:26:"header-menu5-submenu-width";s:0:"";s:27:"header-menu5-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu5-menu-stack-on-mobile";b:1;s:22:"header-menu5-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu5-font-weight";s:7:"inherit";s:24:"header-menu5-font-family";s:7:"inherit";s:24:"header-menu5-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-5-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button6-text";s:6:"Button";s:26:"header-button6-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button6-font-family";s:7:"inherit";s:26:"header-button6-font-weight";s:7:"inherit";s:26:"header-button6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button6-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button6-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button6-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button6-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button6-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button6-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button6-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button6-border-radius";s:0:"";s:27:"section-hb-button-6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button6-text";s:6:"Button";s:26:"footer-button6-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button6-font-family";s:7:"inherit";s:26:"footer-button6-font-weight";s:7:"inherit";s:29:"footer-button6-text-transform";s:0:"";s:26:"footer-button6-line-height";s:0:"";s:24:"footer-button6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button6-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button6-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button6-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button6-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button6-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button6-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button6-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-6-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-6";s:22:"Insert HTML text here.";s:18:"header-html-6color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-6link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-6link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-6";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-6";s:7:"inherit";s:29:"font-family-section-hb-html-6";s:7:"inherit";s:29:"font-extras-section-hb-html-6";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-6";s:22:"Insert HTML text here.";s:18:"footer-html-6color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-6link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-6link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-6";s:7:"inherit";s:29:"font-family-section-fb-html-6";s:7:"inherit";s:29:"font-extras-section-fb-html-6";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-6-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-6-bg-space";s:0:"";s:20:"header-social-6-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-6-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-6-color";s:0:"";s:23:"header-social-6-h-color";s:0:"";s:24:"header-social-6-bg-color";s:0:"";s:26:"header-social-6-bg-h-color";s:0:"";s:28:"header-social-6-label-toggle";b:0;s:26:"header-social-6-color-type";s:6:"custom";s:34:"header-social-6-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-6";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-6-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-6-bg-space";s:0:"";s:20:"footer-social-6-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-6-radius";s:0:"";s:21:"footer-social-6-color";s:0:"";s:23:"footer-social-6-h-color";s:0:"";s:24:"footer-social-6-bg-color";s:0:"";s:26:"footer-social-6-bg-h-color";s:0:"";s:28:"footer-social-6-label-toggle";b:0;s:26:"footer-social-6-color-type";s:6:"custom";s:27:"footer-social-6-brand-color";s:0:"";s:33:"footer-social-6-brand-label-color";s:0:"";s:34:"footer-social-6-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-6";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-6";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-6-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-6-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-6-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-6-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-6-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-6-font-family";s:7:"inherit";s:27:"header-widget-6-font-weight";s:7:"inherit";s:25:"header-widget-6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-6-content-font-family";s:7:"inherit";s:35:"header-widget-6-content-font-weight";s:7:"inherit";s:33:"header-widget-6-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-6-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-6-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-6-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-6-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-6-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-6-font-family";s:7:"inherit";s:27:"footer-widget-6-font-weight";s:7:"inherit";s:30:"footer-widget-6-text-transform";s:0:"";s:27:"footer-widget-6-line-height";s:0:"";s:25:"footer-widget-6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-6-content-font-family";s:7:"inherit";s:35:"footer-widget-6-content-font-weight";s:7:"inherit";s:35:"footer-widget-6-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-6-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-6";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu6-bg-color";s:0:"";s:18:"header-menu6-color";s:0:"";s:23:"header-menu6-h-bg-color";s:0:"";s:20:"header-menu6-h-color";s:0:"";s:23:"header-menu6-a-bg-color";s:0:"";s:20:"header-menu6-a-color";s:0:"";s:30:"header-menu6-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu6-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu6-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu6-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu6-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu6-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu6-menu-hover-animation";s:0:"";s:40:"header-menu6-submenu-container-animation";s:0:"";s:24:"section-hb-menu-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu6-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu6-submenu-item-border";b:0;s:32:"header-menu6-submenu-item-b-size";s:1:"1";s:33:"header-menu6-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu6-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu6-submenu-top-offset";s:0:"";s:26:"header-menu6-submenu-width";s:0:"";s:27:"header-menu6-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu6-menu-stack-on-mobile";b:1;s:22:"header-menu6-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu6-font-weight";s:7:"inherit";s:24:"header-menu6-font-family";s:7:"inherit";s:24:"header-menu6-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-6-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button7-text";s:6:"Button";s:26:"header-button7-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button7-font-family";s:7:"inherit";s:26:"header-button7-font-weight";s:7:"inherit";s:26:"header-button7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button7-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button7-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button7-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button7-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button7-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button7-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button7-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button7-border-radius";s:0:"";s:27:"section-hb-button-7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button7-text";s:6:"Button";s:26:"footer-button7-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button7-font-family";s:7:"inherit";s:26:"footer-button7-font-weight";s:7:"inherit";s:29:"footer-button7-text-transform";s:0:"";s:26:"footer-button7-line-height";s:0:"";s:24:"footer-button7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button7-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button7-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button7-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button7-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button7-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button7-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button7-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-7-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-7";s:22:"Insert HTML text here.";s:18:"header-html-7color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-7link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-7link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-7";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-7";s:7:"inherit";s:29:"font-family-section-hb-html-7";s:7:"inherit";s:29:"font-extras-section-hb-html-7";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-7";s:22:"Insert HTML text here.";s:18:"footer-html-7color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-7link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-7link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-7";s:7:"inherit";s:29:"font-family-section-fb-html-7";s:7:"inherit";s:29:"font-extras-section-fb-html-7";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-7-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-7-bg-space";s:0:"";s:20:"header-social-7-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-7-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-7-color";s:0:"";s:23:"header-social-7-h-color";s:0:"";s:24:"header-social-7-bg-color";s:0:"";s:26:"header-social-7-bg-h-color";s:0:"";s:28:"header-social-7-label-toggle";b:0;s:26:"header-social-7-color-type";s:6:"custom";s:34:"header-social-7-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-7";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-7-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-7-bg-space";s:0:"";s:20:"footer-social-7-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-7-radius";s:0:"";s:21:"footer-social-7-color";s:0:"";s:23:"footer-social-7-h-color";s:0:"";s:24:"footer-social-7-bg-color";s:0:"";s:26:"footer-social-7-bg-h-color";s:0:"";s:28:"footer-social-7-label-toggle";b:0;s:26:"footer-social-7-color-type";s:6:"custom";s:27:"footer-social-7-brand-color";s:0:"";s:33:"footer-social-7-brand-label-color";s:0:"";s:34:"footer-social-7-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-7";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-7";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-7-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-7-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-7-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-7-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-7-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-7-font-family";s:7:"inherit";s:27:"header-widget-7-font-weight";s:7:"inherit";s:25:"header-widget-7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-7-content-font-family";s:7:"inherit";s:35:"header-widget-7-content-font-weight";s:7:"inherit";s:33:"header-widget-7-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-7-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-7-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-7-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-7-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-7-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-7-font-family";s:7:"inherit";s:27:"footer-widget-7-font-weight";s:7:"inherit";s:30:"footer-widget-7-text-transform";s:0:"";s:27:"footer-widget-7-line-height";s:0:"";s:25:"footer-widget-7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-7-content-font-family";s:7:"inherit";s:35:"footer-widget-7-content-font-weight";s:7:"inherit";s:35:"footer-widget-7-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-7-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-7";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu7-bg-color";s:0:"";s:18:"header-menu7-color";s:0:"";s:23:"header-menu7-h-bg-color";s:0:"";s:20:"header-menu7-h-color";s:0:"";s:23:"header-menu7-a-bg-color";s:0:"";s:20:"header-menu7-a-color";s:0:"";s:30:"header-menu7-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu7-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu7-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu7-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu7-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu7-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu7-menu-hover-animation";s:0:"";s:40:"header-menu7-submenu-container-animation";s:0:"";s:24:"section-hb-menu-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu7-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu7-submenu-item-border";b:0;s:32:"header-menu7-submenu-item-b-size";s:1:"1";s:33:"header-menu7-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu7-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu7-submenu-top-offset";s:0:"";s:26:"header-menu7-submenu-width";s:0:"";s:27:"header-menu7-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu7-menu-stack-on-mobile";b:1;s:22:"header-menu7-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu7-font-weight";s:7:"inherit";s:24:"header-menu7-font-family";s:7:"inherit";s:24:"header-menu7-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-7-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button8-text";s:6:"Button";s:26:"header-button8-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button8-font-family";s:7:"inherit";s:26:"header-button8-font-weight";s:7:"inherit";s:26:"header-button8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button8-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button8-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button8-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button8-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button8-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button8-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button8-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button8-border-radius";s:0:"";s:27:"section-hb-button-8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button8-text";s:6:"Button";s:26:"footer-button8-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button8-font-family";s:7:"inherit";s:26:"footer-button8-font-weight";s:7:"inherit";s:29:"footer-button8-text-transform";s:0:"";s:26:"footer-button8-line-height";s:0:"";s:24:"footer-button8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button8-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button8-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button8-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button8-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button8-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button8-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button8-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-8-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-8";s:22:"Insert HTML text here.";s:18:"header-html-8color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-8link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-8link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-8";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-8";s:7:"inherit";s:29:"font-family-section-hb-html-8";s:7:"inherit";s:29:"font-extras-section-hb-html-8";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-8";s:22:"Insert HTML text here.";s:18:"footer-html-8color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-8link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-8link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-8";s:7:"inherit";s:29:"font-family-section-fb-html-8";s:7:"inherit";s:29:"font-extras-section-fb-html-8";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-8-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-8-bg-space";s:0:"";s:20:"header-social-8-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-8-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-8-color";s:0:"";s:23:"header-social-8-h-color";s:0:"";s:24:"header-social-8-bg-color";s:0:"";s:26:"header-social-8-bg-h-color";s:0:"";s:28:"header-social-8-label-toggle";b:0;s:26:"header-social-8-color-type";s:6:"custom";s:34:"header-social-8-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-8";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-8-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-8-bg-space";s:0:"";s:20:"footer-social-8-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-8-radius";s:0:"";s:21:"footer-social-8-color";s:0:"";s:23:"footer-social-8-h-color";s:0:"";s:24:"footer-social-8-bg-color";s:0:"";s:26:"footer-social-8-bg-h-color";s:0:"";s:28:"footer-social-8-label-toggle";b:0;s:26:"footer-social-8-color-type";s:6:"custom";s:27:"footer-social-8-brand-color";s:0:"";s:33:"footer-social-8-brand-label-color";s:0:"";s:34:"footer-social-8-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-8";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-8";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-8-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-8-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-8-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-8-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-8-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-8-font-family";s:7:"inherit";s:27:"header-widget-8-font-weight";s:7:"inherit";s:25:"header-widget-8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-8-content-font-family";s:7:"inherit";s:35:"header-widget-8-content-font-weight";s:7:"inherit";s:33:"header-widget-8-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-8-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-8-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-8-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-8-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-8-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-8-font-family";s:7:"inherit";s:27:"footer-widget-8-font-weight";s:7:"inherit";s:30:"footer-widget-8-text-transform";s:0:"";s:27:"footer-widget-8-line-height";s:0:"";s:25:"footer-widget-8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-8-content-font-family";s:7:"inherit";s:35:"footer-widget-8-content-font-weight";s:7:"inherit";s:35:"footer-widget-8-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-8-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-8";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu8-bg-color";s:0:"";s:18:"header-menu8-color";s:0:"";s:23:"header-menu8-h-bg-color";s:0:"";s:20:"header-menu8-h-color";s:0:"";s:23:"header-menu8-a-bg-color";s:0:"";s:20:"header-menu8-a-color";s:0:"";s:30:"header-menu8-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu8-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu8-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu8-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu8-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu8-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu8-menu-hover-animation";s:0:"";s:40:"header-menu8-submenu-container-animation";s:0:"";s:24:"section-hb-menu-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu8-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu8-submenu-item-border";b:0;s:32:"header-menu8-submenu-item-b-size";s:1:"1";s:33:"header-menu8-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu8-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu8-submenu-top-offset";s:0:"";s:26:"header-menu8-submenu-width";s:0:"";s:27:"header-menu8-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu8-menu-stack-on-mobile";b:1;s:22:"header-menu8-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu8-font-weight";s:7:"inherit";s:24:"header-menu8-font-family";s:7:"inherit";s:24:"header-menu8-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-8-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-button9-text";s:6:"Button";s:26:"header-button9-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-button9-font-family";s:7:"inherit";s:26:"header-button9-font-weight";s:7:"inherit";s:26:"header-button9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"header-button9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-button9-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-button9-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button9-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-button9-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button9-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"header-button9-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-button9-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-button9-border-radius";s:0:"";s:27:"section-hb-button-9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-hb-button-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"sticky-header-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"footer-button9-text";s:6:"Button";s:26:"footer-button9-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"footer-button9-font-family";s:7:"inherit";s:26:"footer-button9-font-weight";s:7:"inherit";s:29:"footer-button9-text-transform";s:0:"";s:26:"footer-button9-line-height";s:0:"";s:24:"footer-button9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button9-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-button9-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button9-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-button9-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-button9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button9-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:27:"footer-button9-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"footer-button9-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-button-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:27:"section-fb-button-9-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-fb-button-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"header-html-9";s:22:"Insert HTML text here.";s:18:"header-html-9color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-html-9link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-html-9link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-hb-html-9";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"font-weight-section-hb-html-9";s:7:"inherit";s:29:"font-family-section-hb-html-9";s:7:"inherit";s:29:"font-extras-section-hb-html-9";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-hb-html-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:13:"footer-html-9";s:22:"Insert HTML text here.";s:18:"footer-html-9color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-html-9link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-html-9link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"font-size-section-fb-html-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-html-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:29:"font-weight-section-fb-html-9";s:7:"inherit";s:29:"font-family-section-fb-html-9";s:7:"inherit";s:29:"font-extras-section-fb-html-9";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"section-fb-html-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-9-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-social-9-bg-space";s:0:"";s:20:"header-social-9-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-social-9-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-9-color";s:0:"";s:23:"header-social-9-h-color";s:0:"";s:24:"header-social-9-bg-color";s:0:"";s:26:"header-social-9-bg-h-color";s:0:"";s:28:"header-social-9-label-toggle";b:0;s:26:"header-social-9-color-type";s:6:"custom";s:34:"header-social-9-brand-hover-toggle";b:0;s:35:"font-size-section-hb-social-icons-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-social-icons-9";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:32:"section-hb-social-icons-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-9-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-social-9-bg-space";s:0:"";s:20:"footer-social-9-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-social-9-radius";s:0:"";s:21:"footer-social-9-color";s:0:"";s:23:"footer-social-9-h-color";s:0:"";s:24:"footer-social-9-bg-color";s:0:"";s:26:"footer-social-9-bg-h-color";s:0:"";s:28:"footer-social-9-label-toggle";b:0;s:26:"footer-social-9-color-type";s:6:"custom";s:27:"footer-social-9-brand-color";s:0:"";s:33:"footer-social-9-brand-label-color";s:0:"";s:34:"footer-social-9-brand-hover-toggle";b:0;s:35:"font-size-section-fb-social-icons-9";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"footer-social-icons-9";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:25:"footer-social-9-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:32:"section-fb-social-icons-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-9-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"header-widget-9-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-widget-9-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-9-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-9-font-family";s:7:"inherit";s:27:"header-widget-9-font-weight";s:7:"inherit";s:25:"header-widget-9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-widget-9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:35:"header-widget-9-content-font-family";s:7:"inherit";s:35:"header-widget-9-content-font-weight";s:7:"inherit";s:33:"header-widget-9-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"header-widget-9-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:38:"sidebar-widgets-header-widget-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-widget-9-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-widget-9-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-widget-9-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-9-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-9-font-family";s:7:"inherit";s:27:"footer-widget-9-font-weight";s:7:"inherit";s:30:"footer-widget-9-text-transform";s:0:"";s:27:"footer-widget-9-line-height";s:0:"";s:25:"footer-widget-9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:35:"footer-widget-9-content-font-family";s:7:"inherit";s:35:"footer-widget-9-content-font-weight";s:7:"inherit";s:35:"footer-widget-9-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:33:"footer-widget-9-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"footer-widget-alignment-9";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:38:"sidebar-widgets-footer-widget-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:21:"header-menu9-bg-color";s:0:"";s:18:"header-menu9-color";s:0:"";s:23:"header-menu9-h-bg-color";s:0:"";s:20:"header-menu9-h-color";s:0:"";s:23:"header-menu9-a-bg-color";s:0:"";s:20:"header-menu9-a-color";s:0:"";s:30:"header-menu9-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:29:"header-menu9-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu9-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu9-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu9-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-menu9-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"header-menu9-menu-hover-animation";s:0:"";s:40:"header-menu9-submenu-container-animation";s:0:"";s:24:"section-hb-menu-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu9-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu9-submenu-item-border";b:0;s:32:"header-menu9-submenu-item-b-size";s:1:"1";s:33:"header-menu9-submenu-item-b-color";s:7:"#eaeaea";s:41:"header-menu9-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"header-menu9-submenu-top-offset";s:0:"";s:26:"header-menu9-submenu-width";s:0:"";s:27:"header-menu9-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:33:"header-menu9-menu-stack-on-mobile";b:1;s:22:"header-menu9-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-menu9-font-weight";s:7:"inherit";s:24:"header-menu9-font-family";s:7:"inherit";s:24:"header-menu9-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:27:"section-hb-divider-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-divider-9-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"header-button10-text";s:6:"Button";s:27:"header-button10-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:27:"header-button10-font-family";s:7:"inherit";s:27:"header-button10-font-weight";s:7:"inherit";s:27:"header-button10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"header-button10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-button10-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-button10-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-button10-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-button10-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"header-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"header-button10-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:28:"header-button10-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"header-button10-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"header-button10-border-radius";s:0:"";s:28:"section-hb-button-10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-hb-button-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"sticky-header-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:20:"footer-button10-text";s:6:"Button";s:27:"footer-button10-link-option";a:3:{s:3:"url";s:23:"https://www.wpastra.com";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:27:"footer-button10-font-family";s:7:"inherit";s:27:"footer-button10-font-weight";s:7:"inherit";s:30:"footer-button10-text-transform";s:0:"";s:27:"footer-button10-line-height";s:0:"";s:25:"footer-button10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button10-text-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-button10-back-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-button10-text-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-button10-back-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-button10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"footer-button10-border-size";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:28:"footer-button10-border-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:36:"footer-button10-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:40;s:5:"right";i:40;s:6:"bottom";i:40;s:4:"left";i:40;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-button-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:28:"section-fb-button-10-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:27:"section-fb-button-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:14:"header-html-10";s:22:"Insert HTML text here.";s:19:"header-html-10color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-html-10link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"header-html-10link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"font-size-section-hb-html-10";a:6:{s:7:"desktop";i:15;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"font-weight-section-hb-html-10";s:7:"inherit";s:30:"font-family-section-hb-html-10";s:7:"inherit";s:30:"font-extras-section-hb-html-10";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"section-hb-html-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:14:"footer-html-10";s:22:"Insert HTML text here.";s:19:"footer-html-10color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"footer-html-10link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:26:"footer-html-10link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"font-size-section-fb-html-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"footer-html-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:30:"font-weight-section-fb-html-10";s:7:"inherit";s:30:"font-family-section-fb-html-10";s:7:"inherit";s:30:"font-extras-section-fb-html-10";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:25:"section-fb-html-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-10-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-social-10-bg-space";s:0:"";s:21:"header-social-10-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"header-social-10-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-10-color";s:0:"";s:24:"header-social-10-h-color";s:0:"";s:25:"header-social-10-bg-color";s:0:"";s:27:"header-social-10-bg-h-color";s:0:"";s:29:"header-social-10-label-toggle";b:0;s:27:"header-social-10-color-type";s:6:"custom";s:35:"header-social-10-brand-hover-toggle";b:0;s:36:"font-size-section-hb-social-icons-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-social-icons-10";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:33:"section-hb-social-icons-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"footer-social-10-space";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"footer-social-10-bg-space";s:0:"";s:21:"footer-social-10-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:23:"footer-social-10-radius";s:0:"";s:22:"footer-social-10-color";s:0:"";s:24:"footer-social-10-h-color";s:0:"";s:25:"footer-social-10-bg-color";s:0:"";s:27:"footer-social-10-bg-h-color";s:0:"";s:29:"footer-social-10-label-toggle";b:0;s:27:"footer-social-10-color-type";s:6:"custom";s:28:"footer-social-10-brand-color";s:0:"";s:34:"footer-social-10-brand-label-color";s:0:"";s:35:"footer-social-10-brand-hover-toggle";b:0;s:36:"font-size-section-fb-social-icons-10";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"footer-social-icons-10";a:1:{s:5:"items";a:3:{i:0;a:8:{s:2:"id";s:8:"facebook";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#557dbc";s:10:"background";s:11:"transparent";s:4:"icon";s:8:"facebook";s:5:"label";s:8:"Facebook";}i:1;a:8:{s:2:"id";s:7:"twitter";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#7acdee";s:10:"background";s:11:"transparent";s:4:"icon";s:7:"twitter";s:5:"label";s:7:"Twitter";}i:2;a:8:{s:2:"id";s:9:"instagram";s:7:"enabled";b:1;s:6:"source";s:4:"icon";s:3:"url";s:0:"";s:5:"color";s:7:"#8a3ab9";s:10:"background";s:11:"transparent";s:4:"icon";s:9:"instagram";s:5:"label";s:9:"Instagram";}}}s:26:"footer-social-10-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:33:"section-fb-social-icons-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-widget-10-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"header-widget-10-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"header-widget-10-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"header-widget-10-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"header-widget-10-font-family";s:7:"inherit";s:28:"header-widget-10-font-weight";s:7:"inherit";s:26:"header-widget-10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"header-widget-10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:36:"header-widget-10-content-font-family";s:7:"inherit";s:36:"header-widget-10-content-font-weight";s:7:"inherit";s:34:"header-widget-10-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"header-widget-10-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:39:"sidebar-widgets-header-widget-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"footer-widget-10-title-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:22:"footer-widget-10-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:27:"footer-widget-10-link-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:29:"footer-widget-10-link-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:28:"footer-widget-10-font-family";s:7:"inherit";s:28:"footer-widget-10-font-weight";s:7:"inherit";s:31:"footer-widget-10-text-transform";s:0:"";s:28:"footer-widget-10-line-height";s:0:"";s:26:"footer-widget-10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"footer-widget-10-content-font-family";s:7:"inherit";s:36:"footer-widget-10-content-font-weight";s:7:"inherit";s:36:"footer-widget-10-content-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:34:"footer-widget-10-content-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"footer-widget-alignment-10";a:3:{s:7:"desktop";s:4:"left";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:39:"sidebar-widgets-footer-widget-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:22:"header-menu10-bg-color";s:0:"";s:19:"header-menu10-color";s:0:"";s:24:"header-menu10-h-bg-color";s:0:"";s:21:"header-menu10-h-color";s:0:"";s:24:"header-menu10-a-bg-color";s:0:"";s:21:"header-menu10-a-color";s:0:"";s:31:"header-menu10-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:30:"header-menu10-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-menu10-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"header-menu10-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:35:"header-menu10-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:32:"header-menu10-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"header-menu10-menu-hover-animation";s:0:"";s:41:"header-menu10-submenu-container-animation";s:0:"";s:25:"section-hb-menu-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"header-menu10-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:33:"header-menu10-submenu-item-border";b:0;s:33:"header-menu10-submenu-item-b-size";s:1:"1";s:34:"header-menu10-submenu-item-b-color";s:7:"#eaeaea";s:42:"header-menu10-submenu-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:32:"header-menu10-submenu-top-offset";s:0:"";s:27:"header-menu10-submenu-width";s:0:"";s:28:"header-menu10-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:34:"header-menu10-menu-stack-on-mobile";b:1;s:23:"header-menu10-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"header-menu10-font-weight";s:7:"inherit";s:25:"header-menu10-font-family";s:7:"inherit";s:25:"header-menu10-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:28:"section-hb-divider-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:28:"section-fb-divider-10-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"sticky-header-on-devices";s:7:"desktop";s:19:"sticky-header-style";s:4:"none";s:20:"footer-desktop-items";a:10:{s:5:"above";a:6:{s:7:"above_1";a:0:{}s:7:"above_2";a:0:{}s:7:"above_3";a:0:{}s:7:"above_4";a:0:{}s:7:"above_5";a:0:{}s:7:"above_6";a:0:{}}s:7:"primary";a:6:{s:9:"primary_1";a:0:{}s:9:"primary_2";a:0:{}s:9:"primary_3";a:0:{}s:9:"primary_4";a:0:{}s:9:"primary_5";a:0:{}s:9:"primary_6";a:0:{}}s:5:"below";a:6:{s:7:"below_1";a:1:{i:0;s:9:"copyright";}s:7:"below_2";a:0:{}s:7:"below_3";a:0:{}s:7:"below_4";a:0:{}s:7:"below_5";a:0:{}s:7:"below_6";a:0:{}}s:5:"group";s:36:"astra-settings[footer-desktop-items]";s:4:"rows";a:3:{i:0;s:5:"above";i:1;s:7:"primary";i:2;s:5:"below";}s:5:"zones";a:3:{s:5:"above";a:6:{s:7:"above_1";s:15:"Above Section 1";s:7:"above_2";s:15:"Above Section 2";s:7:"above_3";s:15:"Above Section 3";s:7:"above_4";s:15:"Above Section 4";s:7:"above_5";s:15:"Above Section 5";s:7:"above_6";s:15:"Above Section 6";}s:7:"primary";a:6:{s:9:"primary_1";s:17:"Primary Section 1";s:9:"primary_2";s:17:"Primary Section 2";s:9:"primary_3";s:17:"Primary Section 3";s:9:"primary_4";s:17:"Primary Section 4";s:9:"primary_5";s:17:"Primary Section 5";s:9:"primary_6";s:17:"Primary Section 6";}s:5:"below";a:6:{s:7:"below_1";s:15:"Below Section 1";s:7:"below_2";s:15:"Below Section 2";s:7:"below_3";s:15:"Below Section 3";s:7:"below_4";s:15:"Below Section 4";s:7:"below_5";s:15:"Below Section 5";s:7:"below_6";s:15:"Below Section 6";}}s:7:"layouts";a:3:{s:5:"above";a:2:{s:6:"column";s:1:"2";s:6:"layout";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}}s:7:"primary";a:2:{s:6:"column";s:1:"3";s:6:"layout";a:3:{s:7:"desktop";s:7:"3-equal";s:6:"tablet";s:7:"3-equal";s:6:"mobile";s:4:"full";}}s:5:"below";a:2:{s:6:"column";i:1;s:6:"layout";a:3:{s:6:"mobile";s:4:"full";s:6:"tablet";s:4:"full";s:7:"desktop";s:4:"full";}}}s:6:"status";a:3:{s:5:"above";b:1;s:7:"primary";b:1;s:5:"below";b:1;}s:4:"flag";b:0;s:5:"popup";a:1:{s:13:"popup_content";a:0:{}}}s:17:"hba-footer-height";i:60;s:17:"hba-footer-column";s:1:"2";s:17:"hba-footer-layout";a:3:{s:7:"desktop";s:7:"2-equal";s:6:"tablet";s:7:"2-equal";s:6:"mobile";s:4:"full";}s:28:"hba-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#eeeeee";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:28:"hbb-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:27:"hb-footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:7:"#f9f9f9";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:27:"hbb-footer-top-border-color";s:65:"var( --ast-global-color-subtle-background, --ast-global-color-7 )";s:20:"hbb-footer-separator";i:0;s:36:"section-header-builder-layout-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:17:"hbb-footer-height";i:30;s:17:"hbb-footer-column";s:1:"1";s:17:"hbb-footer-layout";a:4:{s:7:"desktop";s:4:"full";s:6:"tablet";s:4:"full";s:6:"mobile";s:4:"full";s:4:"flag";b:0;}s:24:"hb-primary-footer-height";s:0:"";s:23:"hba-footer-layout-width";s:7:"content";s:22:"hb-footer-layout-width";s:7:"content";s:23:"hbb-footer-layout-width";s:7:"content";s:29:"hba-footer-vertical-alignment";s:10:"flex-start";s:28:"hb-footer-vertical-alignment";s:10:"flex-start";s:29:"hbb-footer-vertical-alignment";s:6:"center";s:24:"footer-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:16:"hb-footer-column";s:1:"3";s:19:"hb-footer-separator";i:1;s:29:"hb-footer-bottom-border-color";s:7:"#e6e6e6";s:16:"hb-footer-layout";a:3:{s:7:"desktop";s:7:"3-equal";s:6:"tablet";s:7:"3-equal";s:6:"mobile";s:4:"full";}s:18:"hb-footer-main-sep";i:1;s:24:"hb-footer-main-sep-color";s:7:"#e6e6e6";s:24:"live-search-result-count";i:5;s:23:"footer-copyright-editor";s:49:"Copyright [copyright] [current_year] [site_title]";s:22:"footer-copyright-color";s:25:"var(--ast-global-color-2)";s:36:"line-height-section-footer-copyright";s:0:"";s:26:"footer-copyright-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:34:"font-size-section-footer-copyright";a:6:{s:7:"desktop";i:14;s:6:"tablet";i:14;s:6:"mobile";i:13;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:36:"font-weight-section-footer-copyright";s:7:"inherit";s:36:"font-family-section-footer-copyright";s:7:"inherit";s:36:"font-extras-section-footer-copyright";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:21:"footer-menu-alignment";a:3:{s:7:"desktop";s:6:"center";s:6:"tablet";s:6:"center";s:6:"mobile";s:6:"center";}s:36:"section-below-footer-builder-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"25";s:5:"right";s:2:"40";s:6:"bottom";s:2:"25";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:24:"header-search-icon-space";a:3:{s:7:"desktop";i:18;s:6:"tablet";i:18;s:6:"mobile";i:18;}s:24:"header-search-icon-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:19:"header-search-width";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:11:"live-search";b:0;s:22:"live-search-post-types";a:2:{s:4:"post";i:1;s:4:"page";i:1;}s:37:"transparent-header-social-icons-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:39:"transparent-header-social-icons-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:40:"transparent-header-social-icons-bg-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"transparent-header-social-icons-bg-h-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:34:"transparent-header-html-text-color";s:0:"";s:34:"transparent-header-html-link-color";s:0:"";s:36:"transparent-header-html-link-h-color";s:0:"";s:37:"transparent-header-widget-title-color";s:0:"";s:39:"transparent-header-widget-content-color";s:0:"";s:36:"transparent-header-widget-link-color";s:0:"";s:38:"transparent-header-widget-link-h-color";s:0:"";s:36:"transparent-header-button-text-color";s:7:"#ffffff";s:38:"transparent-header-button-text-h-color";s:25:"var(--ast-global-color-7)";s:34:"transparent-header-button-bg-color";s:0:"";s:36:"transparent-header-button-bg-h-color";s:7:"#ffffff";s:17:"off-canvas-layout";s:10:"side-panel";s:16:"off-canvas-slide";s:5:"right";s:33:"header-builder-menu-toggle-target";s:4:"icon";s:34:"header-offcanvas-content-alignment";s:10:"flex-start";s:21:"off-canvas-background";a:6:{s:16:"background-color";s:7:"#ffffff";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:22:"off-canvas-close-color";s:7:"#3a3a3a";s:18:"mobile-header-type";s:8:"dropdown";s:20:"off-canvas-move-body";b:1;s:24:"off-canvas-inner-spacing";s:0:"";s:18:"footer-menu-layout";a:3:{s:7:"desktop";s:10:"horizontal";s:6:"tablet";s:8:"vertical";s:6:"mobile";s:8:"vertical";}s:29:"footer-menu-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:28:"footer-menu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"footer-menu-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"footer-menu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:33:"footer-menu-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:30:"footer-menu-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:21:"footer-menu-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:23:"footer-menu-font-weight";s:7:"inherit";s:23:"footer-menu-font-family";s:7:"inherit";s:23:"footer-menu-font-extras";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:0:"";s:15:"text-decoration";s:0:"";}s:24:"footer-main-menu-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:2:"20";s:6:"bottom";s:1:"0";s:4:"left";s:2:"20";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:19:"header-trigger-icon";s:4:"menu";s:30:"mobile-header-toggle-icon-size";i:20;s:36:"mobile-header-toggle-btn-border-size";a:4:{s:3:"top";i:1;s:5:"right";i:1;s:6:"bottom";i:1;s:4:"left";i:1;}s:34:"mobile-header-toggle-border-radius";i:2;s:41:"mobile-header-toggle-border-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:2;s:5:"right";i:2;s:6:"bottom";i:2;s:4:"left";i:2;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"mobile-header-label-font-family";s:7:"inherit";s:31:"mobile-header-label-font-weight";s:7:"inherit";s:34:"mobile-header-label-text-transform";s:0:"";s:31:"mobile-header-label-line-height";s:0:"";s:29:"mobile-header-label-font-size";s:0:"";s:20:"global-color-palette";a:2:{s:7:"palette";a:9:{i:0;s:7:"#ffde2f";i:1;s:7:"#ebc500";i:2;s:7:"#ffffff";i:3;s:7:"#ffffff";i:4;s:7:"#0b2329";i:5;s:7:"#091d22";i:6;s:7:"#585858";i:7;s:7:"#030c0e";i:8;s:7:"#000000";}s:4:"flag";b:0;}s:17:"header-logo-color";s:0:"";s:27:"header-mobile-menu-bg-color";s:0:"";s:24:"header-mobile-menu-color";s:0:"";s:29:"header-mobile-menu-h-bg-color";s:0:"";s:26:"header-mobile-menu-h-color";s:0:"";s:29:"header-mobile-menu-a-bg-color";s:0:"";s:26:"header-mobile-menu-a-color";s:0:"";s:36:"header-mobile-menu-bg-obj-responsive";a:3:{s:7:"desktop";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}s:6:"tablet";a:7:{s:16:"background-color";s:25:"var(--ast-global-color-4)";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:15:"background-type";s:5:"color";}s:6:"mobile";a:6:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";}}s:35:"header-mobile-menu-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:37:"header-mobile-menu-h-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-2)";s:6:"mobile";s:0:"";}s:37:"header-mobile-menu-a-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:25:"var(--ast-global-color-0)";s:6:"mobile";s:0:"";}s:40:"header-mobile-menu-h-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:40:"header-mobile-menu-a-bg-color-responsive";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:46:"header-mobile-menu-submenu-container-animation";s:4:"fade";s:38:"header-mobile-menu-submenu-item-border";b:1;s:38:"header-mobile-menu-submenu-item-b-size";i:1;s:39:"header-mobile-menu-submenu-item-b-color";s:25:"var(--ast-global-color-6)";s:33:"header-mobile-menu-submenu-border";a:4:{s:3:"top";i:2;s:6:"bottom";i:0;s:4:"left";i:0;s:5:"right";i:0;}s:28:"header-mobile-menu-font-size";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";i:13;s:6:"mobile";i:13;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"font-extras-header-mobile-menu";a:6:{s:11:"line-height";s:0:"";s:16:"line-height-unit";s:2:"em";s:14:"letter-spacing";s:0:"";s:19:"letter-spacing-unit";s:2:"px";s:14:"text-transform";s:9:"uppercase";s:15:"text-decoration";s:0:"";}s:28:"woo-header-cart-click-action";s:7:"default";s:28:"responsive-cart-click-action";s:6:"flyout";s:23:"woo-slide-in-cart-width";a:6:{s:7:"desktop";i:460;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:41:"woo-header-cart-icon-total-label-position";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:25:"header-woo-cart-icon-size";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:20:"woo-header-cart-icon";s:7:"default";s:26:"woo-header-cart-icon-style";s:7:"outline";s:41:"woo-header-cart-product-count-color-group";s:57:"var( --ast-global-color-secondary, --ast-global-color-5 )";s:33:"woo-desktop-cart-flyout-direction";s:5:"right";s:26:"header-woo-cart-icon-color";s:0:"";s:38:"transparent-header-woo-cart-icon-color";s:0:"";s:32:"header-woo-cart-icon-hover-color";s:0:"";s:28:"woo-header-cart-border-width";i:2;s:34:"woo-header-cart-icon-radius-fields";a:6:{s:7:"desktop";a:4:{s:3:"top";i:3;s:5:"right";i:3;s:6:"bottom";i:3;s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:29:"woo-header-cart-badge-display";b:1;s:29:"woo-header-cart-label-display";s:0:"";s:26:"header-woo-cart-text-color";s:0:"";s:26:"header-woo-cart-link-color";s:0:"";s:32:"header-woo-cart-background-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:38:"header-woo-cart-background-hover-color";a:3:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:31:"header-woo-cart-separator-color";s:0:"";s:32:"header-woo-cart-link-hover-color";s:0:"";s:30:"header-woo-cart-btn-text-color";s:0:"";s:36:"header-woo-cart-btn-background-color";s:0:"";s:36:"header-woo-cart-btn-text-hover-color";s:0:"";s:34:"header-woo-cart-btn-bg-hover-color";s:0:"";s:34:"header-woo-checkout-btn-text-color";s:0:"";s:40:"header-woo-checkout-btn-background-color";s:0:"";s:40:"header-woo-checkout-btn-text-hover-color";s:0:"";s:38:"header-woo-checkout-btn-bg-hover-color";s:0:"";s:26:"edd-header-cart-icon-style";s:7:"outline";s:26:"edd-header-cart-icon-color";s:0:"";s:27:"edd-header-cart-icon-radius";i:3;s:38:"transparent-header-edd-cart-icon-color";s:0:"";s:29:"edd-header-cart-total-display";b:1;s:29:"edd-header-cart-title-display";b:1;s:26:"header-edd-cart-text-color";s:0:"";s:26:"header-edd-cart-link-color";s:0:"";s:32:"header-edd-cart-background-color";s:0:"";s:31:"header-edd-cart-separator-color";s:0:"";s:34:"header-edd-checkout-btn-text-color";s:0:"";s:40:"header-edd-checkout-btn-background-color";s:0:"";s:40:"header-edd-checkout-btn-text-hover-color";s:0:"";s:38:"header-edd-checkout-btn-bg-hover-color";s:0:"";s:19:"header-account-type";s:7:"default";s:26:"header-account-login-style";s:4:"icon";s:51:"header-account-login-style-extend-text-profile-type";s:7:"default";s:26:"header-account-action-type";s:4:"link";s:24:"header-account-link-type";s:7:"default";s:27:"header-account-logout-style";s:4:"icon";s:52:"header-account-logout-style-extend-text-profile-type";s:7:"default";s:30:"header-account-logged-out-text";s:6:"Log In";s:29:"header-account-logged-in-text";s:10:"My Account";s:28:"header-account-logout-action";s:4:"link";s:26:"header-account-image-width";a:3:{s:7:"desktop";s:2:"40";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:24:"header-account-icon-size";a:3:{s:7:"desktop";i:18;s:6:"tablet";i:18;s:6:"mobile";i:18;}s:25:"header-account-icon-color";s:0:"";s:25:"header-account-login-link";a:3:{s:3:"url";s:0:"";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:26:"header-account-logout-link";a:3:{s:3:"url";s:48:"https://websitedemos.net/wp-preview/wp-login.php";s:7:"new_tab";b:0;s:8:"link_rel";s:0:"";}s:32:"font-size-section-header-account";a:6:{s:7:"desktop";s:0:"";s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:30:"header-account-type-text-color";s:0:"";s:23:"header-account-woo-menu";b:0;s:22:"cloned-component-track";a:12:{s:13:"header-button";i:2;s:13:"footer-button";i:2;s:11:"header-html";i:2;s:11:"footer-html";i:2;s:11:"header-menu";i:2;s:13:"header-widget";i:4;s:13:"footer-widget";i:4;s:19:"header-social-icons";i:1;s:19:"footer-social-icons";i:1;s:14:"header-divider";i:0;s:14:"footer-divider";i:0;s:13:"removed-items";a:0:{}}s:26:"blog-single-post-structure";a:2:{i:0;s:12:"single-image";i:1;s:17:"single-title-meta";}s:16:"blog-single-meta";a:3:{i:0;s:8:"comments";i:1;s:8:"category";i:2;s:6:"author";}s:13:"button-radius";i:50;s:19:"site-content-layout";s:23:"content-boxed-container";s:26:"single-page-content-layout";s:15:"plain-container";s:26:"single-post-content-layout";s:7:"default";s:27:"archive-post-content-layout";s:7:"default";s:16:"body-line-height";s:4:"1.65";s:23:"headings-text-transform";s:0:"";s:20:"headings-line-height";s:0:"";s:21:"font-size-entry-title";a:6:{s:7:"desktop";i:30;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:31:"font-size-archive-summary-title";a:6:{s:7:"desktop";i:40;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:25:"load-google-fonts-locally";b:0;s:19:"preload-local-fonts";b:0;s:36:"related-posts-content-text-transform";s:0:"";s:33:"related-posts-content-line-height";s:0:"";s:25:"breadcrumb-text-transform";s:0:"";s:21:"text-transform-button";s:0:"";s:21:"theme-btn-line-height";i:1;s:24:"theme-btn-letter-spacing";s:0:"";s:29:"header-button1-text-transform";s:0:"";s:26:"header-button1-line-height";s:0:"";s:28:"footer-button1-border-radius";s:0:"";s:29:"line-height-section-hb-html-1";s:0:"";s:32:"text-transform-section-hb-html-1";s:0:"";s:32:"text-transform-section-fb-html-1";s:0:"";s:29:"line-height-section-fb-html-1";s:0:"";s:22:"header-social-1-radius";s:0:"";s:30:"header-widget-1-text-transform";s:0:"";s:27:"header-widget-1-line-height";s:0:"";s:38:"header-widget-1-content-text-transform";s:0:"";s:35:"header-widget-1-content-line-height";s:0:"";s:38:"footer-widget-1-content-text-transform";s:0:"";s:35:"footer-widget-1-content-line-height";s:0:"";s:34:"header-menu1-submenu-border-radius";s:0:"";s:27:"header-menu1-text-transform";s:0:"";s:24:"header-menu1-line-height";s:0:"";s:29:"header-button2-text-transform";s:0:"";s:26:"header-button2-line-height";s:0:"";s:28:"footer-button2-border-radius";s:0:"";s:29:"line-height-section-hb-html-2";s:0:"";s:32:"text-transform-section-hb-html-2";s:0:"";s:32:"text-transform-section-fb-html-2";s:0:"";s:29:"line-height-section-fb-html-2";s:0:"";s:22:"header-social-2-radius";s:0:"";s:30:"header-widget-2-text-transform";s:0:"";s:27:"header-widget-2-line-height";s:0:"";s:38:"header-widget-2-content-text-transform";s:0:"";s:35:"header-widget-2-content-line-height";s:0:"";s:38:"footer-widget-2-content-text-transform";s:0:"";s:35:"footer-widget-2-content-line-height";s:0:"";s:34:"header-menu2-submenu-border-radius";s:0:"";s:27:"header-menu2-text-transform";s:0:"";s:24:"header-menu2-line-height";s:0:"";s:29:"header-button3-text-transform";s:0:"";s:26:"header-button3-line-height";s:0:"";s:28:"footer-button3-border-radius";s:0:"";s:29:"line-height-section-hb-html-3";s:0:"";s:32:"text-transform-section-hb-html-3";s:0:"";s:32:"text-transform-section-fb-html-3";s:0:"";s:29:"line-height-section-fb-html-3";s:0:"";s:22:"header-social-3-radius";s:0:"";s:30:"header-widget-3-text-transform";s:0:"";s:27:"header-widget-3-line-height";s:0:"";s:38:"header-widget-3-content-text-transform";s:0:"";s:35:"header-widget-3-content-line-height";s:0:"";s:38:"footer-widget-3-content-text-transform";s:0:"";s:35:"footer-widget-3-content-line-height";s:0:"";s:34:"header-menu3-submenu-border-radius";s:0:"";s:27:"header-menu3-text-transform";s:0:"";s:24:"header-menu3-line-height";s:0:"";s:29:"header-button4-text-transform";s:0:"";s:26:"header-button4-line-height";s:0:"";s:28:"footer-button4-border-radius";s:0:"";s:29:"line-height-section-hb-html-4";s:0:"";s:32:"text-transform-section-hb-html-4";s:0:"";s:32:"text-transform-section-fb-html-4";s:0:"";s:29:"line-height-section-fb-html-4";s:0:"";s:22:"header-social-4-radius";s:0:"";s:30:"header-widget-4-text-transform";s:0:"";s:27:"header-widget-4-line-height";s:0:"";s:38:"header-widget-4-content-text-transform";s:0:"";s:35:"header-widget-4-content-line-height";s:0:"";s:38:"footer-widget-4-content-text-transform";s:0:"";s:35:"footer-widget-4-content-line-height";s:0:"";s:34:"header-menu4-submenu-border-radius";s:0:"";s:27:"header-menu4-text-transform";s:0:"";s:24:"header-menu4-line-height";s:0:"";s:29:"header-button5-text-transform";s:0:"";s:26:"header-button5-line-height";s:0:"";s:28:"footer-button5-border-radius";s:0:"";s:29:"line-height-section-hb-html-5";s:0:"";s:32:"text-transform-section-hb-html-5";s:0:"";s:32:"text-transform-section-fb-html-5";s:0:"";s:29:"line-height-section-fb-html-5";s:0:"";s:22:"header-social-5-radius";s:0:"";s:30:"header-widget-5-text-transform";s:0:"";s:27:"header-widget-5-line-height";s:0:"";s:38:"header-widget-5-content-text-transform";s:0:"";s:35:"header-widget-5-content-line-height";s:0:"";s:38:"footer-widget-5-content-text-transform";s:0:"";s:35:"footer-widget-5-content-line-height";s:0:"";s:34:"header-menu5-submenu-border-radius";s:0:"";s:27:"header-menu5-text-transform";s:0:"";s:24:"header-menu5-line-height";s:0:"";s:29:"header-button6-text-transform";s:0:"";s:26:"header-button6-line-height";s:0:"";s:28:"footer-button6-border-radius";s:0:"";s:29:"line-height-section-hb-html-6";s:0:"";s:32:"text-transform-section-hb-html-6";s:0:"";s:32:"text-transform-section-fb-html-6";s:0:"";s:29:"line-height-section-fb-html-6";s:0:"";s:22:"header-social-6-radius";s:0:"";s:30:"header-widget-6-text-transform";s:0:"";s:27:"header-widget-6-line-height";s:0:"";s:38:"header-widget-6-content-text-transform";s:0:"";s:35:"header-widget-6-content-line-height";s:0:"";s:38:"footer-widget-6-content-text-transform";s:0:"";s:35:"footer-widget-6-content-line-height";s:0:"";s:34:"header-menu6-submenu-border-radius";s:0:"";s:27:"header-menu6-text-transform";s:0:"";s:24:"header-menu6-line-height";s:0:"";s:29:"header-button7-text-transform";s:0:"";s:26:"header-button7-line-height";s:0:"";s:28:"footer-button7-border-radius";s:0:"";s:29:"line-height-section-hb-html-7";s:0:"";s:32:"text-transform-section-hb-html-7";s:0:"";s:32:"text-transform-section-fb-html-7";s:0:"";s:29:"line-height-section-fb-html-7";s:0:"";s:22:"header-social-7-radius";s:0:"";s:30:"header-widget-7-text-transform";s:0:"";s:27:"header-widget-7-line-height";s:0:"";s:38:"header-widget-7-content-text-transform";s:0:"";s:35:"header-widget-7-content-line-height";s:0:"";s:38:"footer-widget-7-content-text-transform";s:0:"";s:35:"footer-widget-7-content-line-height";s:0:"";s:34:"header-menu7-submenu-border-radius";s:0:"";s:27:"header-menu7-text-transform";s:0:"";s:24:"header-menu7-line-height";s:0:"";s:29:"header-button8-text-transform";s:0:"";s:26:"header-button8-line-height";s:0:"";s:28:"footer-button8-border-radius";s:0:"";s:29:"line-height-section-hb-html-8";s:0:"";s:32:"text-transform-section-hb-html-8";s:0:"";s:32:"text-transform-section-fb-html-8";s:0:"";s:29:"line-height-section-fb-html-8";s:0:"";s:22:"header-social-8-radius";s:0:"";s:30:"header-widget-8-text-transform";s:0:"";s:27:"header-widget-8-line-height";s:0:"";s:38:"header-widget-8-content-text-transform";s:0:"";s:35:"header-widget-8-content-line-height";s:0:"";s:38:"footer-widget-8-content-text-transform";s:0:"";s:35:"footer-widget-8-content-line-height";s:0:"";s:34:"header-menu8-submenu-border-radius";s:0:"";s:27:"header-menu8-text-transform";s:0:"";s:24:"header-menu8-line-height";s:0:"";s:29:"header-button9-text-transform";s:0:"";s:26:"header-button9-line-height";s:0:"";s:28:"footer-button9-border-radius";s:0:"";s:29:"line-height-section-hb-html-9";s:0:"";s:32:"text-transform-section-hb-html-9";s:0:"";s:32:"text-transform-section-fb-html-9";s:0:"";s:29:"line-height-section-fb-html-9";s:0:"";s:22:"header-social-9-radius";s:0:"";s:30:"header-widget-9-text-transform";s:0:"";s:27:"header-widget-9-line-height";s:0:"";s:38:"header-widget-9-content-text-transform";s:0:"";s:35:"header-widget-9-content-line-height";s:0:"";s:38:"footer-widget-9-content-text-transform";s:0:"";s:35:"footer-widget-9-content-line-height";s:0:"";s:34:"header-menu9-submenu-border-radius";s:0:"";s:27:"header-menu9-text-transform";s:0:"";s:24:"header-menu9-line-height";s:0:"";s:30:"header-button10-text-transform";s:0:"";s:27:"header-button10-line-height";s:0:"";s:29:"footer-button10-border-radius";s:0:"";s:30:"line-height-section-hb-html-10";s:0:"";s:33:"text-transform-section-hb-html-10";s:0:"";s:33:"text-transform-section-fb-html-10";s:0:"";s:30:"line-height-section-fb-html-10";s:0:"";s:23:"header-social-10-radius";s:0:"";s:31:"header-widget-10-text-transform";s:0:"";s:28:"header-widget-10-line-height";s:0:"";s:39:"header-widget-10-content-text-transform";s:0:"";s:36:"header-widget-10-content-line-height";s:0:"";s:39:"footer-widget-10-content-text-transform";s:0:"";s:36:"footer-widget-10-content-line-height";s:0:"";s:35:"header-menu10-submenu-border-radius";s:0:"";s:28:"header-menu10-text-transform";s:0:"";s:25:"header-menu10-line-height";s:0:"";s:39:"text-transform-section-footer-copyright";s:0:"";s:26:"footer-menu-text-transform";s:0:"";s:23:"footer-menu-line-height";s:0:"";s:30:"header-mobile-menu-font-weight";s:7:"inherit";s:30:"header-mobile-menu-font-family";s:7:"inherit";s:33:"header-mobile-menu-text-transform";s:0:"";s:30:"header-mobile-menu-line-height";s:0:"";s:27:"woo-header-cart-icon-radius";i:3;s:29:"woo-desktop-cart-flyout-width";i:460;s:18:"theme-auto-version";s:6:"4.11.5";s:50:"ast-callback-notice-header-transparent-header-logo";s:0:"";s:55:"ast-callback-notice-header-transparent-header-logo-link";s:0:"";s:51:"ast-callback-notice-header-transparent-meta-enabled";s:0:"";s:55:"ast-callback-notice-header-transparent-header-meta-link";s:0:"";s:33:"_astra_pb_compatibility_completed";b:1;s:21:"headings-font-variant";s:3:"400";s:30:"mobile-header-toggle-btn-color";s:7:"#ffffff";s:32:"astra-old-global-sidebar-default";b:0;s:28:"spectra-gutenberg-compat-css";b:0;s:38:"theme-button-border-group-border-color";s:25:"var(--ast-global-color-0)";s:40:"theme-button-border-group-border-h-color";s:25:"var(--ast-global-color-1)";s:33:"mobile-header-toggle-border-color";s:7:"#ffffff";s:30:"ast-dynamic-single-post-layout";s:8:"layout-1";s:33:"ast-dynamic-single-post-structure";a:3:{i:0;s:29:"ast-dynamic-single-post-title";i:1;s:28:"ast-dynamic-single-post-meta";i:2;s:29:"ast-dynamic-single-post-image";}s:46:"ast-dynamic-single-post-featured-as-background";b:1;s:47:"ast-dynamic-single-post-banner-featured-overlay";s:17:"rgba(3,12,14,0.7)";s:37:"ast-dynamic-single-post-banner-height";a:3:{s:7:"desktop";i:400;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:42:"ast-dynamic-single-post-banner-title-color";s:25:"var(--ast-global-color-2)";s:38:"ast-dynamic-single-post-banner-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"4";s:5:"right";i:3;s:6:"bottom";s:1:"0";s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:33:"elementor-container-padding-style";b:0;s:15:"blog-image-size";s:4:"full";s:31:"ast-dynamic-archive-post-layout";s:8:"layout-2";s:37:"ast-dynamic-archive-post-custom-title";s:33:"Inspiring Designs for Every Space";s:45:"ast-dynamic-archive-post-horizontal-alignment";a:1:{s:7:"desktop";s:6:"center";}s:39:"ast-dynamic-archive-post-banner-on-blog";b:1;s:38:"ast-dynamic-archive-post-banner-height";a:3:{s:7:"desktop";i:450;s:6:"tablet";s:0:"";s:6:"mobile";s:0:"";}s:37:"ast-dynamic-archive-post-elements-gap";i:20;s:42:"ast-dynamic-archive-post-banner-image-type";s:6:"custom";s:41:"ast-dynamic-archive-post-banner-custom-bg";a:3:{s:7:"desktop";a:12:{s:16:"background-color";s:0:"";s:16:"background-image";s:79:"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg.jpg";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:5:"cover";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:7:"classic";s:13:"overlay-color";s:25:"var(--ast-global-color-7)";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:5:"image";s:16:"background-media";i:7;s:15:"overlay-opacity";d:0.7;}s:6:"tablet";a:11:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:0:"";s:13:"overlay-color";s:0:"";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}s:6:"mobile";a:11:{s:16:"background-color";s:0:"";s:16:"background-image";s:0:"";s:17:"background-repeat";s:6:"repeat";s:19:"background-position";s:13:"center center";s:15:"background-size";s:4:"auto";s:21:"background-attachment";s:6:"scroll";s:12:"overlay-type";s:0:"";s:13:"overlay-color";s:0:"";s:16:"overlay-gradient";s:0:"";s:15:"background-type";s:0:"";s:16:"background-media";s:0:"";}}s:40:"ast-dynamic-archive-post-title-font-size";a:6:{s:7:"desktop";i:68;s:6:"tablet";i:52;s:6:"mobile";i:28;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:38:"ast-dynamic-archive-post-banner-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:2:"20";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"single-post-inside-spacing";a:6:{s:7:"desktop";a:4:{s:3:"top";s:2:"40";s:5:"right";s:2:"40";s:6:"bottom";s:2:"40";s:4:"left";s:2:"40";}s:6:"tablet";a:4:{s:3:"top";s:2:"32";s:5:"right";s:2:"32";s:6:"bottom";s:2:"32";s:4:"left";s:2:"32";}s:6:"mobile";a:4:{s:3:"top";s:2:"24";s:5:"right";s:2:"24";s:6:"bottom";s:2:"24";s:4:"left";s:2:"24";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:64:"ast-dynamic-single-post-article-featured-image-position-layout-1";s:4:"none";s:57:"ast-dynamic-single-post-article-featured-image-ratio-type";s:6:"custom";s:51:"ast-dynamic-single-post-article-featured-image-size";s:4:"full";s:46:"ast-dynamic-single-post-taxonomy-clone-tracker";i:0;s:42:"ast-dynamic-single-post-author-avatar-size";i:40;s:37:"ast-dynamic-single-post-author-avatar";b:1;s:39:"ast-dynamic-single-post-title-font-size";a:6:{s:7:"desktop";i:30;s:6:"tablet";i:24;s:6:"mobile";i:20;s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:39:"ast-dynamic-archive-post-banner-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"6";s:5:"right";i:3;s:6:"bottom";s:1:"0";s:4:"left";i:3;}s:6:"tablet";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:6:"mobile";a:4:{s:3:"top";s:0:"";s:5:"right";s:0:"";s:6:"bottom";s:0:"";s:4:"left";s:0:"";}s:12:"desktop-unit";s:2:"em";s:11:"tablet-unit";s:2:"em";s:11:"mobile-unit";s:2:"em";}s:26:"archive-post-content-style";s:7:"unboxed";s:41:"ast-dynamic-single-post-banner-link-color";s:0:"";s:47:"ast-dynamic-single-post-banner-link-hover-color";s:0:"";s:32:"transparent-header-disable-posts";b:1;s:29:"header-button1-border-h-color";a:1:{s:7:"desktop";s:7:"#ffffff";}s:38:"transparent-header-button-border-color";s:7:"#ffffff";s:40:"transparent-header-button-border-h-color";s:7:"#ffffff";s:27:"section-single-page-padding";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:26:"section-single-page-margin";a:6:{s:7:"desktop";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"tablet";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:6:"mobile";a:4:{s:3:"top";s:1:"0";s:5:"right";s:1:"0";s:6:"bottom";s:1:"0";s:4:"left";s:1:"0";}s:12:"desktop-unit";s:2:"px";s:11:"tablet-unit";s:2:"px";s:11:"mobile-unit";s:2:"px";}s:34:"global-headings-line-height-update";b:1;s:43:"ast-dynamic-archive-post-banner-title-color";s:7:"#ffffff";s:37:"single_posts_pages_heading_clear_none";b:0;s:21:"elementor-btn-styling";b:0;s:52:"remove_single_posts_navigation_mobile_device_padding";b:1;s:48:"secondary-theme-button-border-group-border-color";s:7:"#ffffff";s:50:"secondary-theme-button-border-group-border-h-color";s:7:"#ffffff";s:27:"enable-4-6-14-compatibility";b:0;s:65:"ast-dynamic-single-post-article-featured-image-custom-scale-width";i:4;s:66:"ast-dynamic-single-post-article-featured-image-custom-scale-height";i:3;s:24:"heading-widget-font-size";b:0;s:26:"enable-4-8-0-compatibility";b:0;s:22:"is_theme_queue_running";b:0;s:22:"v4-8-2-backward-option";b:0;s:26:"enable-4-8-4-compatibility";b:0;s:37:"astra-heading-font-size-compatibility";b:0;s:26:"enable-4-8-9-compatibility";b:0;s:16:"star-rating-comp";b:0;s:22:"v4-9-0-backward-option";b:0;}s:10:"custom-css";s:0:"";}', 'off');
INSERT INTO `wp8u_options` VALUES
(314, 'uagb_beta', 'no', 'auto'),
(315, 'uag_enable_templates_button', 'yes', 'auto'),
(316, 'uag_enable_on_page_css_button', 'yes', 'auto'),
(317, 'uag_enable_block_condition', 'disabled', 'auto'),
(318, 'uag_enable_masonry_gallery', 'enabled', 'auto'),
(319, 'uag_enable_quick_action_sidebar', 'enabled', 'auto'),
(320, 'uag_enable_animations_extension', 'enabled', 'auto'),
(321, 'uag_enable_gbs_extension', 'enabled', 'auto'),
(322, 'uag_enable_block_responsive', 'enabled', 'auto'),
(323, 'uag_select_font_globally', 'a:0:{}', 'auto'),
(324, 'uag_load_select_font_globally', 'disabled', 'auto'),
(325, 'uag_load_gfonts_locally', 'disabled', 'auto'),
(326, 'uag_collapse_panels', 'enabled', 'auto'),
(327, 'uag_copy_paste', 'enabled', 'auto'),
(328, 'uag_preload_local_fonts', 'disabled', 'auto'),
(329, 'uag_visibility_mode', 'disabled', 'auto'),
(330, 'uag_container_global_padding', '0', 'auto'),
(331, 'uag_container_global_elements_gap', '0', 'auto'),
(332, 'uag_btn_inherit_from_theme', 'enabled', 'auto'),
(333, 'uag_blocks_editor_spacing', '0', 'auto'),
(334, 'uag_enable_bsf_analytics_option', 'no', 'auto'),
(335, 'uag_content_width', '1200', 'auto'),
(336, 'spectra_core_blocks', 'a:9:{i:0;s:9:"container";i:1;s:16:"advanced-heading";i:2;s:5:"image";i:3;s:4:"icon";i:4;s:7:"buttons";i:5;s:8:"info-box";i:6;s:14:"call-to-action";i:7;s:9:"countdown";i:8;s:13:"popup-builder";}', 'auto'),
(337, 'zip_ai_modules', 'a:2:{s:12:"ai_assistant";a:1:{s:6:"status";s:7:"enabled";}s:17:"ai_design_copilot";a:1:{s:6:"status";s:7:"enabled";}}', 'auto'),
(340, 'wp_calendar_block_has_published_posts', '1', 'auto'),
(342, 'category_children', 'a:0:{}', 'auto'),
(343, 'srfm_options', 'a:1:{s:21:"first_form_created_at";i:1763183358;}', 'auto'),
(344, 'action_scheduler_migration_status', 'complete', 'auto'),
(345, '_astra_sites_old_site_options', 'a:13:{s:11:"custom_logo";s:0:"";s:18:"nav_menu_locations";a:2:{s:7:"primary";s:4:"menu";s:11:"mobile_menu";s:4:"menu";}s:13:"show_on_front";s:4:"page";s:13:"page_on_front";s:4:"Home";s:14:"page_for_posts";s:4:"Blog";s:10:"site_title";s:15:"Multipurpose 12";s:20:"astra-color-palettes";a:4:{s:14:"currentPalette";s:9:"palette_1";s:8:"palettes";a:4:{s:9:"palette_1";a:9:{i:0;s:7:"#ffde2f";i:1;s:7:"#ebc500";i:2;s:7:"#ffffff";i:3;s:7:"#ffffff";i:4;s:7:"#0b2329";i:5;s:7:"#091d22";i:6;s:7:"#585858";i:7;s:7:"#030c0e";i:8;s:7:"#000000";}s:9:"palette_2";a:9:{i:0;s:7:"#0170b9";i:1;s:7:"#3a3a3a";i:2;s:7:"#3a3a3a";i:3;s:7:"#4b4f58";i:4;s:7:"#f5f5f5";i:5;s:7:"#ffffff";i:6;s:7:"#f2f5f7";i:7;s:7:"#424242";i:8;s:7:"#000000";}s:9:"palette_3";a:9:{i:0;s:7:"#0170B9";i:1;s:7:"#3a3a3a";i:2;s:7:"#3a3a3a";i:3;s:7:"#4B4F58";i:4;s:7:"#F5F5F5";i:5;s:7:"#FFFFFF";i:6;s:7:"#F2F5F7";i:7;s:7:"#424242";i:8;s:7:"#000000";}s:9:"palette_4";a:9:{i:0;s:7:"#0085FF";i:1;s:7:"#0177E3";i:2;s:7:"#FFFFFF";i:3;s:7:"#E7F6FF";i:4;s:7:"#212A37";i:5;s:7:"#0F172A";i:6;s:7:"#4F5B62";i:7;s:7:"#070614";i:8;s:7:"#222222";}}s:7:"presets";a:11:{s:3:"Oak";a:9:{i:0;s:7:"#0067FF";i:1;s:7:"#005EE9";i:2;s:7:"#0F172A";i:3;s:7:"#364151";i:4;s:7:"#E7F6FF";i:5;s:7:"#FFFFFF";i:6;s:7:"#D1DAE5";i:7;s:7:"#070614";i:8;s:7:"#222222";}s:5:"Viola";a:9:{i:0;s:7:"#6528F7";i:1;s:7:"#5511F8";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#F2F0FE";i:5;s:7:"#FFFFFF";i:6;s:7:"#D8D8F5";i:7;s:7:"#0D0614";i:8;s:7:"#222222";}s:5:"Cedar";a:9:{i:0;s:7:"#DD183B";i:1;s:7:"#CC1939";i:2;s:7:"#0F172A";i:3;s:7:"#3A3A3A";i:4;s:7:"#FFEDE6";i:5;s:7:"#FFFFFF";i:6;s:7:"#FFD1BF";i:7;s:7:"#140609";i:8;s:7:"#222222";}s:6:"Willow";a:9:{i:0;s:7:"#54B435";i:1;s:7:"#379237";i:2;s:7:"#0F172A";i:3;s:7:"#2F3B40";i:4;s:7:"#EDFBE2";i:5;s:7:"#FFFFFF";i:6;s:7:"#D5EAD8";i:7;s:7:"#0C1406";i:8;s:7:"#222222";}s:4:"Lily";a:9:{i:0;s:7:"#DCA54A";i:1;s:7:"#D09A40";i:2;s:7:"#0F172A";i:3;s:7:"#4A4A4A";i:4;s:7:"#FAF5E5";i:5;s:7:"#FFFFFF";i:6;s:7:"#F0E6C5";i:7;s:7:"#141004";i:8;s:7:"#222222";}s:4:"Rose";a:9:{i:0;s:7:"#FB5FAB";i:1;s:7:"#EA559D";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#FCEEF5";i:5;s:7:"#FFFFFF";i:6;s:7:"#FAD8E9";i:7;s:7:"#140610";i:8;s:7:"#222222";}s:4:"Sage";a:9:{i:0;s:7:"#1B9C85";i:1;s:7:"#178E79";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#EDF6EE";i:5;s:7:"#FFFFFF";i:6;s:7:"#D4F3D7";i:7;s:7:"#06140C";i:8;s:7:"#222222";}s:5:"Flare";a:9:{i:0;s:7:"#FD9800";i:1;s:7:"#E98C00";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#FEF9E1";i:5;s:7:"#FFFFFF";i:6;s:7:"#F9F0C8";i:7;s:7:"#141006";i:8;s:7:"#222222";}s:5:"Maple";a:9:{i:0;s:7:"#FF6210";i:1;s:7:"#F15808";i:2;s:7:"#1C0D0A";i:3;s:7:"#353535";i:4;s:7:"#FEF1E4";i:5;s:7:"#FFFFFF";i:6;s:7:"#E5D7D1";i:7;s:7:"#140B06";i:8;s:7:"#222222";}s:5:"Birch";a:9:{i:0;s:7:"#737880";i:1;s:7:"#65696F";i:2;s:7:"#151616";i:3;s:7:"#393C40";i:4;s:7:"#F6F6F6";i:5;s:7:"#FFFFFF";i:6;s:7:"#F1F0F0";i:7;s:7:"#232529";i:8;s:7:"#222222";}s:4:"Dark";a:9:{i:0;s:7:"#0085FF";i:1;s:7:"#0177E3";i:2;s:7:"#FFFFFF";i:3;s:7:"#E7F6FF";i:4;s:7:"#212A37";i:5;s:7:"#0F172A";i:6;s:7:"#4F5B62";i:7;s:7:"#070614";i:8;s:7:"#222222";}}s:4:"flag";b:0;}s:24:"astra-typography-presets";s:0:"";s:29:"srfm_general_settings_options";b:0;s:32:"get_default_dynamic_block_option";b:0;s:33:"srfm_default_dynamic_block_option";a:25:{s:28:"srfm_url_block_required_text";s:23:"This field is required.";s:30:"srfm_input_block_required_text";s:23:"This field is required.";s:28:"srfm_input_block_unique_text";s:25:"Value needs to be unique.";s:32:"srfm_address_block_required_text";s:23:"This field is required.";s:30:"srfm_phone_block_required_text";s:23:"This field is required.";s:28:"srfm_phone_block_unique_text";s:25:"Value needs to be unique.";s:31:"srfm_number_block_required_text";s:23:"This field is required.";s:33:"srfm_textarea_block_required_text";s:23:"This field is required.";s:37:"srfm_multi_choice_block_required_text";s:23:"This field is required.";s:33:"srfm_checkbox_block_required_text";s:23:"This field is required.";s:29:"srfm_gdpr_block_required_text";s:23:"This field is required.";s:30:"srfm_email_block_required_text";s:23:"This field is required.";s:28:"srfm_email_block_unique_text";s:25:"Value needs to be unique.";s:33:"srfm_dropdown_block_required_text";s:23:"This field is required.";s:31:"srfm_rating_block_required_text";s:23:"This field is required.";s:23:"srfm_valid_phone_number";s:34:"Please enter a valid phone number.";s:14:"srfm_valid_url";s:25:"Please enter a valid URL.";s:23:"srfm_confirm_email_same";s:34:"Confirmation email does not match.";s:16:"srfm_valid_email";s:35:"Please enter a valid email address.";s:20:"srfm_input_min_value";s:19:"Minimum value is %s";s:20:"srfm_input_max_value";s:19:"Maximum value is %s";s:28:"srfm_dropdown_min_selections";s:34:"Minimum %s selections are required";s:28:"srfm_dropdown_max_selections";s:33:"Maximum %s selections are allowed";s:32:"srfm_multi_choice_min_selections";s:34:"Minimum %s selections are required";s:32:"srfm_multi_choice_max_selections";s:33:"Maximum %s selections are allowed";}s:35:"srfm_email_summary_settings_options";b:0;s:30:"srfm_security_settings_options";b:0;}', 'off'),
(346, '_surerank_seo_last_updated', '1763183400', 'off'),
(347, 'astra-color-palettes', 'a:4:{s:14:"currentPalette";s:9:"palette_1";s:8:"palettes";a:4:{s:9:"palette_1";a:9:{i:0;s:7:"#ffde2f";i:1;s:7:"#ebc500";i:2;s:7:"#ffffff";i:3;s:7:"#ffffff";i:4;s:7:"#0b2329";i:5;s:7:"#091d22";i:6;s:7:"#585858";i:7;s:7:"#030c0e";i:8;s:7:"#000000";}s:9:"palette_2";a:9:{i:0;s:7:"#0170b9";i:1;s:7:"#3a3a3a";i:2;s:7:"#3a3a3a";i:3;s:7:"#4b4f58";i:4;s:7:"#f5f5f5";i:5;s:7:"#ffffff";i:6;s:7:"#f2f5f7";i:7;s:7:"#424242";i:8;s:7:"#000000";}s:9:"palette_3";a:9:{i:0;s:7:"#0170B9";i:1;s:7:"#3a3a3a";i:2;s:7:"#3a3a3a";i:3;s:7:"#4B4F58";i:4;s:7:"#F5F5F5";i:5;s:7:"#FFFFFF";i:6;s:7:"#F2F5F7";i:7;s:7:"#424242";i:8;s:7:"#000000";}s:9:"palette_4";a:9:{i:0;s:7:"#0085FF";i:1;s:7:"#0177E3";i:2;s:7:"#FFFFFF";i:3;s:7:"#E7F6FF";i:4;s:7:"#212A37";i:5;s:7:"#0F172A";i:6;s:7:"#4F5B62";i:7;s:7:"#070614";i:8;s:7:"#222222";}}s:7:"presets";a:11:{s:3:"Oak";a:9:{i:0;s:7:"#0067FF";i:1;s:7:"#005EE9";i:2;s:7:"#0F172A";i:3;s:7:"#364151";i:4;s:7:"#E7F6FF";i:5;s:7:"#FFFFFF";i:6;s:7:"#D1DAE5";i:7;s:7:"#070614";i:8;s:7:"#222222";}s:5:"Viola";a:9:{i:0;s:7:"#6528F7";i:1;s:7:"#5511F8";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#F2F0FE";i:5;s:7:"#FFFFFF";i:6;s:7:"#D8D8F5";i:7;s:7:"#0D0614";i:8;s:7:"#222222";}s:5:"Cedar";a:9:{i:0;s:7:"#DD183B";i:1;s:7:"#CC1939";i:2;s:7:"#0F172A";i:3;s:7:"#3A3A3A";i:4;s:7:"#FFEDE6";i:5;s:7:"#FFFFFF";i:6;s:7:"#FFD1BF";i:7;s:7:"#140609";i:8;s:7:"#222222";}s:6:"Willow";a:9:{i:0;s:7:"#54B435";i:1;s:7:"#379237";i:2;s:7:"#0F172A";i:3;s:7:"#2F3B40";i:4;s:7:"#EDFBE2";i:5;s:7:"#FFFFFF";i:6;s:7:"#D5EAD8";i:7;s:7:"#0C1406";i:8;s:7:"#222222";}s:4:"Lily";a:9:{i:0;s:7:"#DCA54A";i:1;s:7:"#D09A40";i:2;s:7:"#0F172A";i:3;s:7:"#4A4A4A";i:4;s:7:"#FAF5E5";i:5;s:7:"#FFFFFF";i:6;s:7:"#F0E6C5";i:7;s:7:"#141004";i:8;s:7:"#222222";}s:4:"Rose";a:9:{i:0;s:7:"#FB5FAB";i:1;s:7:"#EA559D";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#FCEEF5";i:5;s:7:"#FFFFFF";i:6;s:7:"#FAD8E9";i:7;s:7:"#140610";i:8;s:7:"#222222";}s:4:"Sage";a:9:{i:0;s:7:"#1B9C85";i:1;s:7:"#178E79";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#EDF6EE";i:5;s:7:"#FFFFFF";i:6;s:7:"#D4F3D7";i:7;s:7:"#06140C";i:8;s:7:"#222222";}s:5:"Flare";a:9:{i:0;s:7:"#FD9800";i:1;s:7:"#E98C00";i:2;s:7:"#0F172A";i:3;s:7:"#454F5E";i:4;s:7:"#FEF9E1";i:5;s:7:"#FFFFFF";i:6;s:7:"#F9F0C8";i:7;s:7:"#141006";i:8;s:7:"#222222";}s:5:"Maple";a:9:{i:0;s:7:"#FF6210";i:1;s:7:"#F15808";i:2;s:7:"#1C0D0A";i:3;s:7:"#353535";i:4;s:7:"#FEF1E4";i:5;s:7:"#FFFFFF";i:6;s:7:"#E5D7D1";i:7;s:7:"#140B06";i:8;s:7:"#222222";}s:5:"Birch";a:9:{i:0;s:7:"#737880";i:1;s:7:"#65696F";i:2;s:7:"#151616";i:3;s:7:"#393C40";i:4;s:7:"#F6F6F6";i:5;s:7:"#FFFFFF";i:6;s:7:"#F1F0F0";i:7;s:7:"#232529";i:8;s:7:"#222222";}s:4:"Dark";a:9:{i:0;s:7:"#0085FF";i:1;s:7:"#0177E3";i:2;s:7:"#FFFFFF";i:3;s:7:"#E7F6FF";i:4;s:7:"#212A37";i:5;s:7:"#0F172A";i:6;s:7:"#4F5B62";i:7;s:7:"#070614";i:8;s:7:"#222222";}}s:4:"flag";b:0;}', 'auto'),
(348, 'astra-typography-presets', '', 'auto'),
(349, 'srfm_default_dynamic_block_option', 'a:25:{s:28:"srfm_url_block_required_text";s:23:"This field is required.";s:30:"srfm_input_block_required_text";s:23:"This field is required.";s:28:"srfm_input_block_unique_text";s:25:"Value needs to be unique.";s:32:"srfm_address_block_required_text";s:23:"This field is required.";s:30:"srfm_phone_block_required_text";s:23:"This field is required.";s:28:"srfm_phone_block_unique_text";s:25:"Value needs to be unique.";s:31:"srfm_number_block_required_text";s:23:"This field is required.";s:33:"srfm_textarea_block_required_text";s:23:"This field is required.";s:37:"srfm_multi_choice_block_required_text";s:23:"This field is required.";s:33:"srfm_checkbox_block_required_text";s:23:"This field is required.";s:29:"srfm_gdpr_block_required_text";s:23:"This field is required.";s:30:"srfm_email_block_required_text";s:23:"This field is required.";s:28:"srfm_email_block_unique_text";s:25:"Value needs to be unique.";s:33:"srfm_dropdown_block_required_text";s:23:"This field is required.";s:31:"srfm_rating_block_required_text";s:23:"This field is required.";s:23:"srfm_valid_phone_number";s:34:"Please enter a valid phone number.";s:14:"srfm_valid_url";s:25:"Please enter a valid URL.";s:23:"srfm_confirm_email_same";s:34:"Confirmation email does not match.";s:16:"srfm_valid_email";s:35:"Please enter a valid email address.";s:20:"srfm_input_min_value";s:19:"Minimum value is %s";s:20:"srfm_input_max_value";s:19:"Maximum value is %s";s:28:"srfm_dropdown_min_selections";s:34:"Minimum %s selections are required";s:28:"srfm_dropdown_max_selections";s:33:"Maximum %s selections are allowed";s:32:"srfm_multi_choice_min_selections";s:34:"Minimum %s selections are required";s:32:"srfm_multi_choice_max_selections";s:33:"Maximum %s selections are allowed";}', 'auto'),
(350, '_astra_sites_old_widgets_data', 'a:9:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:5:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";i:3;s:7:"block-5";i:4;s:7:"block-6";}s:15:"footer-widget-1";a:0:{}s:15:"footer-widget-2";a:0:{}s:24:"advanced-footer-widget-1";a:0:{}s:24:"advanced-footer-widget-2";a:0:{}s:24:"advanced-footer-widget-3";a:0:{}s:24:"advanced-footer-widget-4";a:0:{}s:13:"array_version";i:3;}', 'off'),
(354, 'astra_sites_import_complete', 'yes', 'off'),
(355, 'getting_started_is_setup_wizard_showing', '1', 'auto'),
(362, 'astra_sites_recent_import_log_file', '/home/novatio1/public_html/wp/wp-content/uploads/astra-sites/import-15-Nov-2025-05-09-58-1e59300cdd825e571826e1b454350abf.log', 'off'),
(363, 'site_logo', '7', 'auto'),
(364, 'WPLANG', '', 'auto'),
(365, 'uag_content_width_set_by', 'Spectra', 'auto'),
(512, 'nps-survey-spectra', 'a:6:{s:13:"dismiss_count";i:0;s:19:"dismiss_permanently";b:0;s:12:"dismiss_step";s:0:"";s:12:"dismiss_time";s:0:"";s:16:"dismiss_timespan";N;s:17:"first_render_time";i:1763190863;}', 'auto'),
(513, 'nps-survey-surerank', 'a:6:{s:13:"dismiss_count";i:0;s:19:"dismiss_permanently";b:0;s:12:"dismiss_step";s:0:"";s:12:"dismiss_time";s:0:"";s:16:"dismiss_timespan";N;s:17:"first_render_time";i:1763190863;}', 'auto'),
(514, 'getting_started_action_items', 'a:1:{s:9:"wordpress";a:1:{s:5:"steps";a:2:{s:23:"setup-title-and-tagline";b:1;s:16:"setup-permalinks";b:1;}}}', 'auto'),
(519, 'ast_block_templates_ai_settings', 'a:1:{s:10:"disable_ai";b:0;}', 'auto'),
(522, 'ast_block_templates_fresh_site', 'no', 'auto'),
(523, 'ast_blocks_sync_in_progress', 'no', 'off'),
(525, 'ast-block-templates-last-export-checksums-time', '1763191037', 'off'),
(646, '_transient_is_multi_author', '0', 'on'),
(860, '_site_transient_update_themes', 'O:8:"stdClass":5:{s:12:"last_checked";i:1763275805;s:7:"checked";a:4:{s:5:"astra";s:7:"4.11.15";s:16:"twentytwentyfive";s:3:"1.3";s:16:"twentytwentyfour";s:3:"1.3";s:17:"twentytwentythree";s:3:"1.6";}s:8:"response";a:0:{}s:9:"no_update";a:4:{s:5:"astra";a:6:{s:5:"theme";s:5:"astra";s:11:"new_version";s:7:"4.11.15";s:3:"url";s:35:"https://wordpress.org/themes/astra/";s:7:"package";s:55:"https://downloads.wordpress.org/theme/astra.4.11.15.zip";s:8:"requires";s:3:"5.3";s:12:"requires_php";s:3:"5.3";}s:16:"twentytwentyfive";a:6:{s:5:"theme";s:16:"twentytwentyfive";s:11:"new_version";s:3:"1.3";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfive/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfive.1.3.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.3";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfour/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip";s:8:"requires";s:3:"6.4";s:12:"requires_php";s:3:"7.0";}s:17:"twentytwentythree";a:6:{s:5:"theme";s:17:"twentytwentythree";s:11:"new_version";s:3:"1.6";s:3:"url";s:47:"https://wordpress.org/themes/twentytwentythree/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip";s:8:"requires";s:3:"6.1";s:12:"requires_php";s:3:"5.6";}}s:12:"translations";a:0:{}}', 'off'),
(874, 'loginizer_login_attempt_stats', 'a:3:{i:1763251200;a:1:{i:0;i:3;}i:1763269200;a:1:{i:0;i:2;}i:1763272800;a:1:{i:1;i:1;}}', 'off'),
(941, '_site_transient_timeout_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2', '1763872700', 'off'),
(942, '_site_transient_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2', 'a:5:{s:19:"recommended_version";s:3:"8.3";s:15:"minimum_version";s:6:"7.2.24";s:12:"is_supported";b:0;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}', 'off'),
(943, '_transient_health-check-site-status-result', '{"good":17,"recommended":6,"critical":1}', 'on'),
(1077, '_transient_timeout_astra-theme-cron-test-ok', '1763278818', 'off'),
(1078, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(1086, '_site_transient_timeout_browser_3c9fc7ddec9b58823c1c96756dbd45d8', '1763880480', 'off'),
(1087, '_site_transient_browser_3c9fc7ddec9b58823c1c96756dbd45d8', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:9:"142.0.0.0";s:8:"platform";s:7:"Windows";s:10:"update_url";s:29:"https://www.google.com/chrome";s:7:"img_src";s:43:"http://s.w.org/images/browsers/chrome.png?1";s:11:"img_src_ssl";s:44:"https://s.w.org/images/browsers/chrome.png?1";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}', 'off'),
(1088, '_transient_timeout_zip_ai_auth_token', '1763362080', 'off'),
(1089, '_transient_zip_ai_auth_token', '1426272|KqbGzulAR6i6ZgYngUjfQgusiCZa60fwx5DwBbEC30b3ca83', 'off'),
(1090, '_transient_timeout_zip_ai_current_plan_details', '1763362081', 'off'),
(1091, '_transient_zip_ai_current_plan_details', '{"team":{"name":"Firoz Shaikh''s Org"},"plan_data":{"remaining":{"all_sites_count":2,"ai_sites_count":1,"team_members_count":0,"disk_space_size":1,"blueprint_sites_count":0,"cloud_sites_count":0,"cloud_disk_space":0,"cloud_inodes_count":0,"free_domains_count":0},"usage":{"all_sites_count":0,"ai_sites_count":1,"team_members_count":1,"disk_space_size":0,"blueprint_sites_count":0,"cloud_sites_count":0,"cloud_disk_space":0,"cloud_inodes_count":0,"free_domains_count":0},"limit":{"all_sites_count":2,"ai_sites_count":2,"team_members_count":1,"temporary_sites_validity":1,"disk_space_size":1,"blueprint_sites_count":0,"cloud_sites_count":0,"cloud_disk_space":0,"cloud_inodes_count":0,"free_domains_count":0},"features":{"can_reserve_site":false,"can_restore_site":false,"can_clone_site":false,"can_blueprint_site":false,"can_custom_ai_site":false,"can_ssh_sftp":false,"can_white_label_domain":false,"can_domain_suffix":false,"can_remove_branding":false,"can_ai_premium_designs":false,"can_project_site":false,"can_ai_site_reset":"lifetime","can_ai_credits_reset":"lifetime","can_purchase_new_plan":true,"can_branded_urls":false,"can_white_label_ai_builder":false,"can_purchase_addons":false,"can_purchase":{"site_addon":{"is_allowed":false,"allowed_plans":[]},"blueprint_site_addon":{"is_allowed":false,"allowed_plans":[]},"ai_site_addon":{"is_allowed":false,"allowed_plans":{"business":"Business","business-cloud":"Business Cloud","business-1":"Business","business-3":"Business","business-5":"Business","business-10":"Business"}},"cloud_site_addon":{"is_allowed":true,"allowed_plans":{"free":"Free","personal":"personal","pro":"Pro","business":"Business","hobby":"Hobby","pro-cloud":"Pro Cloud","business-cloud":"Business Cloud","pro-1":"Pro","pro-3":"Pro","pro-5":"Pro","pro-10":"Pro","business-1":"Business","business-3":"Business","business-5":"Business","business-10":"Business"}}}}},"active_plan":{"slug":"free","name":"Free","period":"lifetime","start_date":"2025-11-15T05:05:33.000000Z","end_date":"2035-11-15T05:05:33.000000Z","purchase_exist":false},"status":"ok"}', 'off'),
(1092, '_transient_timeout_zip_ai_credit_details', '1763275981', 'off'),
(1093, '_transient_zip_ai_credit_details', '{"used":0,"total":1000,"threshold":{"medium":65,"high":85},"percentage":0,"status":"success"}', 'off'),
(1094, '_transient_timeout_action_scheduler_last_pastdue_actions_check', '1763297281', 'off'),
(1095, '_transient_action_scheduler_last_pastdue_actions_check', '1763275681', 'off'),
(1097, '_site_transient_timeout_community-events-e9172109db74973fdc5fb586ace69cbe', '1763318893', 'off'),
(1098, '_site_transient_community-events-e9172109db74973fdc5fb586ace69cbe', 'a:4:{s:9:"sandboxed";b:0;s:5:"error";N;s:8:"location";a:1:{s:2:"ip";s:13:"125.165.108.0";}s:6:"events";a:1:{i:0;a:10:{s:4:"type";s:8:"wordcamp";s:5:"title";s:22:"WordCamp Malaysia 2025";s:3:"url";s:35:"https://malaysia.wordcamp.org/2025/";s:6:"meetup";N;s:10:"meetup_url";N;s:4:"date";s:19:"2025-12-06 09:00:00";s:8:"end_date";s:19:"2025-12-07 00:00:00";s:20:"start_unix_timestamp";i:1764982800;s:18:"end_unix_timestamp";i:1765036800;s:8:"location";a:4:{s:8:"location";s:12:"Kuala Lumpur";s:7:"country";s:2:"MY";s:8:"latitude";d:3.0667844;s:9:"longitude";d:101.6044279;}}}}', 'off'),
(1099, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1763318893', 'off'),
(1100, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:6:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:52:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:8:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:59:"The latest news about WordPress and the WordPress community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Nov 2025 15:40:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=7.0-alpha-61248";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"image";a:1:{i:0;a:6:{s:4:"data";s:11:"\n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:3:"url";a:1:{i:0;a:5:{s:4:"data";s:29:"https://s.w.org/favicon.ico?2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"width";a:1:{i:0;a:5:{s:4:"data";s:2:"32";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"height";a:1:{i:0;a:5:{s:4:"data";s:2:"32";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:75:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 6.9 Release Candidate 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Nov 2025 15:34:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:7:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:7:"General";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:3:"6.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:11:"development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:18:"release candidates";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:6;a:5:{s:4:"data";s:8:"releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19317";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:364:"The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is still under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site. WordPress 6.9 RC1 […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Amy Kamala";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:9479:"\n<p>The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 RC1 can be tested using any of the following methods:</p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-RC1.zip">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href="https://make.wordpress.org/cli/">WP-CLI</a> command: <br><code>wp core update --version=6.9-RC1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.3&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn" data-type="link" data-id="https://playground.wordpress.net/?php=8.3&wp=rc&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 RC1 WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href="https://make.wordpress.org/core/">Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class="wp-block-heading">What’s in WordPress 6.9 RC1?</h2>\n\n\n\n<p>Check out the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details on WordPress 6.9.</p>\n\n\n\n<p>You can browse the technical details for all issues addressed since Beta 4 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-07&until=2025-11-11">Gutenberg commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/log/?revs=61183-61203">Core commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=11%2F07%2F2025..11%2F11%2F2025&milestone=6.9&group=component&col=id&col=summary&col=milestone&col=changetime&col=type&order=id">Closed Trac tickets</a> since November 7, 2025</li>\n</ul>\n\n\n\n<p>Want to know more about this release? Here are some highlights:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Site Editor improvements and Refined content creation\n<ul class="wp-block-list">\n<li>Ability to hide blocks</li>\n\n\n\n<li>New blocks </li>\n\n\n\n<li>Notes on blocks</li>\n\n\n\n<li>Universal command palette in wp-admin</li>\n</ul>\n</li>\n\n\n\n<li>Developer updates\n<ul class="wp-block-list">\n<li>Updates to dataviews and dataforms components</li>\n\n\n\n<li>New abilities API</li>\n\n\n\n<li>Updates to interactivity API </li>\n\n\n\n<li>Updates to block binding API</li>\n</ul>\n</li>\n\n\n\n<li>Performance Improvements\n<ul class="wp-block-list">\n<li>Improved script and style handling</li>\n\n\n\n<li>Optimized queries and caching</li>\n\n\n\n<li>Added ability to handle “fetchpriority” in ES Modules and Import Maps</li>\n\n\n\n<li>Standardizing output buffering</li>\n</ul>\n</li>\n</ul>\n\n\n\n<p>The final release is on track for December 2nd. As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<h2 class="wp-block-heading">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class="wp-block-heading">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<h4 class="wp-block-heading">Calls for testing</h4>\n\n\n\n<p>Thank you to everyone who helps test the following enhancements and bug fixes:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/test/2025/10/06/call-for-testing-accordion-block/">Accordion Block</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/test/2025/10/04/call-for-testing-ability-to-hide-blocks/">Ability to Hide Blocks</a></li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/ticket/64099">Classic themes loading block styles on demand</a></li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/ticket/64204">Modified notes notifications</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/">Abilities API</a></li>\n</ul>\n\n\n\n<p>If you encounter an issue, please report it to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area</a> of the support forums, or directly to <a href="https://core.trac.wordpress.org/newticket">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href="https://core.trac.wordpress.org/tickets/major">known bugs</a>.</p>\n\n\n\n<p>Thank you to everyone who helps with testing!</p>\n\n\n\n<h3 class="wp-block-heading">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href="https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/">plugin’s readme file</a> to 6.9. </p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href="https://wordpress.org/support/forum/alphabeta/">support forum</a>.</p>\n\n\n\n<h3 class="wp-block-heading">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href="https://make.wordpress.org/hosting/test-results-getting-started/">Get started with configuring distributed hosting tests here</a>. Thank you to all <a href="https://make.wordpress.org/hosting/test-results/">web hosts who help test WordPress</a>!</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href="https://make.wordpress.org/test/">testing initiatives in Make Core</a> and join the <a href="https://wordpress.slack.com/messages/core-test/">#core-test channel</a> on <a href="https://wordpress.slack.com/">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">An RC1 haiku</h2>\n\n\n\n<p><em>As the sun rises</em>,</p>\n\n\n\n<p><em>RC1 breaks its cocoon</em></p>\n\n\n\n<p><em>and emerges strong</em>.</p>\n\n\n\n<p class="has-text-align-right"><em>Props to </em><a href=''https://profiles.wordpress.org/akshayar/'' class=''mention''><span class=''mentions-prefix''>@</span>akshayar</a><em>, </em><a href=''https://profiles.wordpress.org/davidbaumwald/'' class=''mention''><span class=''mentions-prefix''>@</span>davidbaumwald</a>, <a href=''https://profiles.wordpress.org/jeffpaul/'' class=''mention''><span class=''mentions-prefix''>@</span>jeffpaul</a>, <a href=''https://profiles.wordpress.org/desrosj/'' class=''mention''><span class=''mentions-prefix''>@</span>desrosj</a>, <a href=''https://profiles.wordpress.org/westonruter/'' class=''mention''><span class=''mentions-prefix''>@</span>westonruter</a>, <a href=''https://profiles.wordpress.org/ellatrix/'' class=''mention''><span class=''mentions-prefix''>@</span>ellatrix</a>, <a href=''https://profiles.wordpress.org/priethor/'' class=''mention''><span class=''mentions-prefix''>@</span>priethor</a>, <a href=''https://profiles.wordpress.org/krupajnanda/'' class=''mention''><span class=''mentions-prefix''>@</span>krupajnanda</a> <em>and</em> <a href=''https://profiles.wordpress.org/cbravobernal/'' class=''mention''><span class=''mentions-prefix''>@</span>cbravobernal</a> <em>for proofreading and review.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19317";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 6.9 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2025/11/wordpress-6-9-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 04 Nov 2025 15:34:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:6:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:7:"General";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:3:"6.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:11:"development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:7:"release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19263";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:347:"WordPress 6.9 Beta 3 is available for download and testing! This beta version of the WordPress software is still under development. Please don’t install, run, or test this version of WordPress on production or mission-critical websites. Instead, you can evaluate Beta 3 on a test server and site. WordPress 6.9 Beta 3 can be tested […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Amy Kamala";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:5454:"\n<p>WordPress 6.9 Beta 3 is available for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is still under development</strong>. Please don’t install, run, or test this version of WordPress on production or mission-critical websites. Instead, you can evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 Beta 3 can be tested using any of the following methods:</p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href="https://wordpress.org/plugins/wordpress-beta-tester/"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-beta3.zip">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href="https://make.wordpress.org/cli/"> WP-CLI</a> command: <br><code>wp core update --version=6.9-beta3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 Beta 3 WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p></p>\n\n\n\n<p>The final release of WordPress 6.9 is scheduled for <strong>December 2, 2025</strong>, and the <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p>Please continue checking the <a href="https://make.wordpress.org/core/">Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p><strong>Find out what’s new in WordPress 6.9</strong>: Read the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class="wp-block-heading">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 3 version is key to ensuring that everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally as important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> provides a walk through on testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area</a> of the support forums, or directly to <a href="https://core.trac.wordpress.org/newticket">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href="https://core.trac.wordpress.org/tickets/major">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href="https://make.wordpress.org/test/">testing initiatives in Make Core</a> and join the<a href="https://wordpress.slack.com/messages/core-test/"> #core-test channel</a> on<a href="https://wordpress.slack.com/"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Beta 3 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 3 contains more than 80 updates and fixes since the Beta 2 release.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes, and more are on the way with your testing! You can browse the technical details for all issues addressed since Beta 2 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-28&until=2025-11-04">Gutenberg commits for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=10%2F28%2F2025..11%2F04%2F2025&milestone=6.9&col=id&col=milestone&col=owner&col=type&col=priority&order=id">Closed Core Trac tickets for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href="https://github.com/WordPress/wordpress-develop/compare/7dcb09c26a1d97c20dcceb866abbd0f3c128388b...81f755846c2d66ce7d21b01623f8163a9f7c6ef6">Comparing commit changes in Core for 6.9</a> since October 28, 2025</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">A Beta 3 haiku</h2>\n\n\n\n<p><em>Code is poetry,</em></p>\n\n\n\n<p><em>and poetry is magic.</em></p>\n\n\n\n<p><em>So code is magic.</em></p>\n\n\n\n<p class="has-text-align-right"><em>Props to </em><a href=''https://profiles.wordpress.org/akshayar/'' class=''mention''><span class=''mentions-prefix''>@</span>akshayar</a> <em>, </em><a href=''https://profiles.wordpress.org/jeffpaul/'' class=''mention''><span class=''mentions-prefix''>@</span>jeffpaul</a>, <a href=''https://profiles.wordpress.org/krupajnanda/'' class=''mention''><span class=''mentions-prefix''>@</span>krupajnanda</a>, <a href=''https://profiles.wordpress.org/mosescursor/'' class=''mention''><span class=''mentions-prefix''>@</span>mosescursor</a>, <em>and</em> <a href=''https://profiles.wordpress.org/westonruter/'' class=''mention''><span class=''mentions-prefix''>@</span>westonruter</a> <em>for proofreading and review.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19263";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:69:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 6.9 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2025/10/wordpress-6-9-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 15:23:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"6-9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19253";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:334:"WordPress 6.9 Beta 2 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites.  Instead, you should evaluate Beta 2 on a test server and site. You can test WordPress 6.9 Beta 2 in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Akshaya Rane";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:5125:"\n<p>WordPress 6.9 Beta 2 is now ready for testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.9 Beta 2 in any of the following ways:<br></p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href="https://wordpress.org/plugins/wordpress-beta-tester/"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-beta2.zip">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href="https://make.wordpress.org/cli/"> WP-CLI</a> command: <br><code>wp core update --version=6.9-beta2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 Beta 2 WordPress Playground instance</a> to test the software directly in your browser. No setup is required–just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Do check the<a href="https://make.wordpress.org/core/"> Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information. Thank you to everyone who contributes by testing! </p>\n\n\n\n<p><strong>Catch up on what’s new in WordPress 6.9</strong>: Read the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class="wp-block-heading">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the<a href="https://wordpress.org/support/forum/alphabeta/"> Alpha/Beta area</a> of the support forums or directly to<a href="https://core.trac.wordpress.org/newticket"> WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of<a href="https://core.trac.wordpress.org/tickets/major"> known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the<a href="https://make.wordpress.org/test/"> testing initiatives in Make Core</a> and join the<a href="https://wordpress.slack.com/messages/core-test/"> #core-test channel</a> on<a href="https://wordpress.slack.com/"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Beta 2 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 2 contains more than 33 Editor updates and fixes since the Beta 1 release, including 28 tickets for WordPress core.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-22&until=2025-10-28">GitHub commits for 6.9</a> since October 21, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=10%2F22%2F2025..10%2F28%2F2025&milestone=6.9&col=id&col=milestone&col=owner&col=type&col=priority&order=id">Closed Trac tickets</a> since October 21, 2025</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">A Beta 2 haiku</h2>\n\n\n\n<p><em>Morning dew returns,</em></p>\n\n\n\n<p><em>Small fixes bloom in silence—</em></p>\n\n\n\n<p><em>Code finds its balance.</em></p>\n\n\n\n<p class="has-text-align-right"><em>Props to <a href=''https://profiles.wordpress.org/davidbaumwald/'' class=''mention''><span class=''mentions-prefix''>@</span>davidbaumwald</a>, <a href=''https://profiles.wordpress.org/wildworks/'' class=''mention''><span class=''mentions-prefix''>@</span>wildworks</a> , <a href=''https://profiles.wordpress.org/krupajnanda/'' class=''mention''><span class=''mentions-prefix''>@</span>krupajnanda</a> & <a href=''https://profiles.wordpress.org/mosescursor/'' class=''mention''><span class=''mentions-prefix''>@</span>mosescursor</a></em> <em>for proofreading and review.</em></p>\n\n\n\n<p></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19253";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:63:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"WordPress 6.8.3 Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/news/2025/09/wordpress-6-8-3-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 30 Sep 2025 19:31:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:14:"minor-releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19204";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:372:"WordPress 6.8.3 is now available! This is a security release that features two fixes. Because this is a security release, it is recommended that you update your sites immediately. You can download WordPress 6.8.3 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4937:"\n<p><strong>WordPress 6.8.3 is now available!</strong></p>\n\n\n\n<p>This is a security release that features two fixes.</p>\n\n\n\n<p>Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p>You can <a href="https://wordpress.org/wordpress-6.8.3.zip">download WordPress 6.8.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>The next major release will be <a href="https://make.wordpress.org/core/6-9/">version 6.9</a>, which is planned for December 2nd, 2025.<br>For more information on WordPress 6.8.3, please visit the <a href="https://wordpress.org/documentation/wordpress-version/version-6-8-3/">version page on the HelpHub site</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for <a href="https://hackerone.com/wordpress?type=team">responsibly reporting vulnerabilities</a>, and allowing them to be fixed in this release:</p>\n\n\n\n<ul class="wp-block-list">\n<li>A data exposure issue where authenticated users could access some restricted content. Independently reported by <a href="https://hackerone.com/mnelson4">Mike Nelson</a>, <a href="https://hackerone.com/hurayraiit">Abu Hurayra</a>, <a href="https://profiles.wordpress.org/timothyblynjacobs/">Timothy Jacobs</a>, and <a href="https://profiles.wordpress.org/peterwilsoncc/">Peter Wilson</a>.</li>\n\n\n\n<li>A cross-site scripting (XSS) vulnerability requiring an authenticated user role that affects the nav menus. Reported by <a href="https://x.com/Savphill">Phill Savage</a>.</li>\n</ul>\n\n\n\n<p>As a courtesy, these fixes have also been made available to all branches eligible to receive security fixes (currently through 4.7). As a reminder, <strong>only the most recent version of WordPress is actively supported</strong>.</p>\n\n\n\n<h2 class="wp-block-heading">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href="https://profiles.wordpress.org/johnbillion/">John Blackbourn</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, WordPress 6.8.3 would not have been possible without the contributions of the following people:</p>\n\n\n\n<p><a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/hurayraiit">Abu Hurayra</a>, <a href="https://profiles.wordpress.org/zieladam">Adam Zieliński</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="https://profiles.wordpress.org/andraganescu%20">Andrei Draganescu</a>, <a href="https://profiles.wordpress.org/davidbaumwald/">David Baumwald</a>, <a href="https://profiles.wordpress.org/ehtis">Ehtisham Siddiqui</a>, <a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="https://profiles.wordpress.org/whyisjake">Jake Spurlock</a>, <a href="https://profiles.wordpress.org/audrasjb">Jb Audras</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/jonsurrell">Jon Surrell</a>, <a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/mnelson4">Michael Nelson</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/phillsav">Phill</a>, <a href="https://profiles.wordpress.org/noisysocks">Robert Anderson</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/coffee2code/">Scott Reilly</a>, <a href="https://profiles.wordpress.org/timothyblynjacobs">Timothy Jacobs</a>, <a href="https://profiles.wordpress.org/vortfu">vortfu</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a></p>\n\n\n\n<h2 class="wp-block-heading">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href="https://core.trac.wordpress.org/report/6">pick a ticket</a>, and join the conversation in the <a href="https://app.slack.com/client/T024MFP4J/C02RQBWTW">#core</a> Slack channel. Need help? Check out the <a href="https://make.wordpress.org/core/handbook/tutorials/faq-for-new-contributors/">Core Contributor Handbook</a>.</p>\n\n\n\n<p>Props to <a href="https://profiles.wordpress.org/ehtis/">Ehtisham Siddiqui</a>, <a href="https://profiles.wordpress.org/johnbillion/">John Blackbourn</a>, <a href="https://profiles.wordpress.org/paulkevan/">Paul Kevan</a>, <a href="https://profiles.wordpress.org/desrosj/">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/jorbin/">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a> for reviewing.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19204";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:63:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Portland Welcomes WordCamp US 2025: A Community Gathering";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"https://wordpress.org/news/2025/08/portland-welcomes-wcus-2025/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 30 Aug 2025 03:03:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:7:"General";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19074";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:405:"A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery. WordPress is so unique because we’re not just a product; we’re a movement. Matt Mullenweg, WordPress Cofounder […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brett McSherry";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:66040:"\n\n\n<p>A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery.</p>\n\n\n\n<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex">\n<figure class="wp-block-pullquote"><blockquote><p>WordPress is so unique because we’re not just a product; we’re a movement.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>The WordPress event began with a dedicated Contributor Day and continued with a Showcase Day and two days of sessions filled with talks, panels, workshops, and community celebrations. WordPress Cofounder Matt Mullenweg joined a diverse lineup of speakers, panelists, and workshop leaders who brought fresh perspectives to the open web from across the globe.</p>\n\n\n\n<p>Set against the vibrant backdrop of Portland — with its iconic bridges, coffee culture, and creative energy — the Sponsor Hall buzzed as companies across the WordPress ecosystem demoed new products, shared insights, and connected with attendees. Each day offered opportunities to refuel with local flavors and international favorites, turning mealtimes into lively hubs of networking and idea-sharing.</p>\n\n\n\n<h2 class="wp-block-heading">A Global Gathering in Portland</h2>\n\n\n\n<p>WordCamp US is the annual gathering point for the WordPress community — where collaboration, creativity, and innovation intersect. This year in Portland, the event delivered an expansive program that reached every corner of the ecosystem.</p>\n\n\n\n<p>Here’s what attendees experienced:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Engaging Sessions Across Tracks</strong> – Keynotes, presentations, and discussions explored the evolving web and the role of open source in shaping it.</li>\n\n\n\n<li><strong>A Global Speaker Lineup</strong> – Voices from across continents brought local stories and global visions to the stage.</li>\n\n\n\n<li><strong>Wide-Ranging Topics</strong> – From AI in WordPress development to accessibility, design systems, content strategy, education, and case studies of WordPress at scale.</li>\n\n\n\n<li><strong>Hands-On Learning Opportunities</strong> – Workshops provided practical takeaways, empowering attendees to apply new skills immediately.</li>\n\n\n\n<li><strong>A Community Built on Collaboration</strong> – Whether contributing code, exploring business strategies, or sharing creative projects, attendees found space to learn, grow, and celebrate open source together.</li>\n</ul>\n\n\n\n<p>New contributors took their first steps into open source, seasoned developers explored cutting-edge AI integrations, and agencies and product teams shared strategies for scaling WordPress to meet modern needs. Beyond the technical, conversations around inclusivity, sustainability, and education underscored WordPress’s role as a tool for empowerment and positive change.</p>\n\n\n\n<p>In hallways, coffee lines, and evening meetups, attendees found the “hallway track” alive and well, spontaneous moments of connection that often became the most memorable part of the experience. Whether reconnecting with longtime collaborators or meeting someone new, these small interactions reinforced the heart of WordCamp US: a community that thrives on openness, generosity, and shared purpose.</p>\n\n\n\n<h2 class="wp-block-heading">Contributor Day: Collaboration at the Core</h2>\n\n\n\n<p>The conference opened on Tuesday, August 26, with a vibrant Contributor Day. Nearly 300 contributors filled the space, including more than 120 first-time participants who were onboarded across 19 teams. Developers, designers, translators, marketers, and community organizers worked side by side, representing WordPress expertise.</p>\n\n\n\n<p>Throughout the day, contributors tackled everything from improving accessibility and performance to refining documentation to enhancing translation tools. Beyond technical contributions, teams like Marketing and Community focused on outreach, mentoring, and shaping future-facing initiatives. Remote participants joined via dedicated channels, reinforcing the inclusive nature of WordPress’s global community. By day’s end, the collective energy was clear: WordPress continues to be built by and for everyone.</p>\n\n\n\n<figure class="wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex" style="border-width:20px;border-radius:2px">\n<figure data-wp-context="{"imageId":"6919712c4e9b9"}" data-wp-interactive="core/image" data-wp-key="6919712c4e9b9" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19080" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19080" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="(max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c4f049"}" data-wp-interactive="core/image" data-wp-key="6919712c4f049" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19081" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19081" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="(max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c4f577"}" data-wp-interactive="core/image" data-wp-key="6919712c4f577" class="wp-block-image size-large wp-lightbox-container"><img decoding="async" width="1707" height="2560" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19087" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?fit=683%2C1024&ssl=1" alt="" class="wp-image-19087" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?w=1707&ssl=1 1707w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=200%2C300&ssl=1 200w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=683%2C1024&ssl=1 683w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=768%2C1152&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1024%2C1536&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1365%2C2048&ssl=1 1365w" sizes="(max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c4fa16"}" data-wp-interactive="core/image" data-wp-key="6919712c4fa16" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19084" src="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19084" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c4feb5"}" data-wp-interactive="core/image" data-wp-key="6919712c4feb5" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19082" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19082" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c50295"}" data-wp-interactive="core/image" data-wp-key="6919712c50295" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19085" src="https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19085" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c506af"}" data-wp-interactive="core/image" data-wp-key="6919712c506af" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19086" src="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19086" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c50a68"}" data-wp-interactive="core/image" data-wp-key="6919712c50a68" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19090" src="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19090" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c50eb3"}" data-wp-interactive="core/image" data-wp-key="6919712c50eb3" class="wp-block-image size-large wp-lightbox-container"><img loading="lazy" decoding="async" width="2560" height="1707" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19089" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&ssl=1" alt="" class="wp-image-19089" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c512dd"}" data-wp-interactive="core/image" data-wp-key="6919712c512dd" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19092" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19092" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c518cf"}" data-wp-interactive="core/image" data-wp-key="6919712c518cf" class="wp-block-image size-large wp-lightbox-container"><img loading="lazy" decoding="async" width="2560" height="1707" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19088" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?fit=1024%2C683&ssl=1" alt="" class="wp-image-19088" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c51d11"}" data-wp-interactive="core/image" data-wp-key="6919712c51d11" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19091" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19091" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c520da"}" data-wp-interactive="core/image" data-wp-key="6919712c520da" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19083" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19083" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>The mix of experience in the room made this year especially notable. First-time contributors were paired with seasoned table leads who guided them through their first steps into open source contribution. Longtime contributors reconnected with their teams and advanced ongoing initiatives, while new voices added fresh perspectives and momentum. The spirit of mentorship was woven throughout, ensuring that Contributor Day was productive and welcoming.</p>\n\n\n\n<p>The results spoke for themselves:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Polyglots</strong> translated more than 12,000 strings, expanding WordPress’s accessibility worldwide.</li>\n\n\n\n<li>The <strong>Community team</strong> celebrated the approval of two brand-new local meetups.</li>\n\n\n\n<li>The <strong>Training team</strong> achieved its objective of updating outdated course thumbnails.</li>\n\n\n\n<li>The <strong>Core team</strong> worked through a live bug scrub, with 9 committers and 16 contributors collaborating on improvements.</li>\n\n\n\n<li>The <strong>Documentation team</strong> completed numerous content updates to keep resources fresh and reliable.</li>\n</ul>\n\n\n\n<p>Momentum carried through every table, with participants reporting measurable progress and a renewed sense of shared purpose. Contributor Day once again highlighted the unique power of collaboration in shaping the open web, proving that every contribution matters through code, translations, training, or community building.</p>\n\n\n\n<h2 class="wp-block-heading">Showcase Day: WordPress in Action</h2>\n\n\n\n<p>Wednesday, August 27, was the popular Showcase Day, spotlighting real-world innovation in WordPress. Initially expected to draw about 250 participants, Showcase Day welcomed more than 800 attendees — a powerful sign of how much energy and curiosity the community brought to Portland. The sessions demonstrated how WordPress powers meaningful work across industries from nonprofits to newsrooms, agencies to global enterprises, while staying true to open source values.</p>\n\n\n\n<p>The day opened with a keynote by Amy Sample Ward: <em>The Tech That Comes Next</em>. Drawing from their co-authored book with Afua Bruce, Amy highlighted the inequities embedded in today’s technologies — from dataset bias to accessibility gaps — and challenged attendees to rethink how tools are funded, built, and deployed. Their talk invited technologists, funders, and community leaders to imagine a more equitable digital future, rooted in collaboration and shared responsibility.</p>\n\n\n\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n<iframe loading="lazy" title="WordCamp US 2025 - Amy Sample Ward "The Tech That Comes Next"" width="500" height="281" src="https://www.youtube.com/embed/RKnM75GFZxw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>From there, <a href="https://youtu.be/PGvh7fCOUk0">Joeleen Kennedy</a> of Human Made shared how Full Site Editing (FSE) shapes the refresh of Wikimedia’s ongoing user experience. Her session <em>Modernizing at Scale</em> detailed how FSE is simplifying workflows, improving accessibility, and making the multilingual platform more sustainable for the long term. Attendees gained a behind-the-scenes look at how one of the world’s largest open knowledge platforms is leveraging WordPress innovation.</p>\n\n\n\n<p><a href="https://youtu.be/F4NEPcwGRCI">Josh Bryant</a> took the stage to explore what happens when Gutenberg leaves the WP-Admin dashboard. His talk, <em>Reimagining WordPress Editing</em>, walked through embedding the block editor into a standalone React application to support Dow Jones’s newsroom workflows. From decoupling Gutenberg to managing custom data stores, the session showcased advanced techniques for scaling editorial tools while maintaining the flexibility of the WordPress ecosystem.</p>\n\n\n\n<p>Hands-on learning was a hallmark of Showcase Day, with Jamie Marsland’s workshop leading participants through building and launching their own professional portfolio sites — no coding required. Attendees left with a fully functioning site, demonstrating WordPress’s continued ability to empower anyone, anywhere, to publish online.</p>\n\n\n\n<p>In the afternoon, Jeffrey Paul’s session <em>Scalable, Ethical AI</em> addressed one of the most pressing topics in today’s digital world: how to integrate AI without sacrificing ownership, privacy, or open standards. Walking participants through practical use cases with ClassifAI and local LLMs, Paul emphasized how WordPress can help content creators harness AI while maintaining autonomy over their data.</p>\n\n\n\n<p>The day closed with a forward-looking community highlight: <a href="https://events.wordpress.org/campusconnect/">WordPress Campus Connect</a>. Panelists <a href="https://youtu.be/ARqM9U0ESvo">Destiny Kanno, Andrés Parra, Javier Montes de Blas, Mauricio Barrantes, and Elineth Morera Campos</a> shared how this initiative brings WordPress into classrooms and universities worldwide. Student Andrés Parra received a scholarship to attend WordCamp. During the panel, Elineth also announced that Fidélitas University will begin offering its students a <a href="https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/">WordPress Credits</a> program starting in October 2025, making it a mandatory addition sometime in 2026, enabling them to contribute directly to WordPress as part of their studies.</p>\n\n\n\n<p>By connecting students and educators with the open web, Campus Connect is building the next generation of contributors and innovators, ensuring that WordPress remains both a learning tool and a pathway to opportunity.</p>\n\n\n\n<p>Taken together, Showcase Day affirmed that WordPress is more than just a CMS — it is a platform for equitable technology, global collaboration, cutting-edge enterprise solutions, and the future of digital education. WordPress has the power to be both a platform and a community tool for education, equity, and innovation.</p>\n\n\n\n<h2 class="wp-block-heading">Presentation Days: Learning, Inspiration, and Connection</h2>\n\n\n\n<p>The first full day of sessions at WordCamp US 2025 opened with warm remarks from the organizing team, who reminded attendees: <em>“The most important thanks goes to all of you. The mix of new energy and veteran experience is what makes WordCamp so special, so thank you for being here.”</em> That spirit of gratitude and community carried throughout the event.</p>\n\n\n\n<p>The Sponsor Hall became a hub of activity, complete with raffles, the return of Career Corner, and even a Voodoo Donut Truck parked outside. Attendees lined up to test their luck at a claw machine stuffed with plush Wapuus, while others sought guidance at the Happiness Bar — a hands-on help desk for WordPress questions big and small. Between these activities, the steady buzz of conversations made it clear: the “hallway track” remained one of WordCamp’s most valuable experiences.</p>\n\n\n\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n<iframe loading="lazy" title="WordCamp US - Danny Sullivan "How (and why!) Google Search Keeps Evolving"" width="500" height="281" src="https://www.youtube.com/embed/ZF_sxLdfTbY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>The program itself set a high bar. Danny Sullivan’s keynote shed light on how search has evolved to meet the needs of new generations, from 24/7 demand and mobile expectations to short-form video and AI. His session gave attendees a deeper understanding of how search intersects with publishing today and sparked conversations about how WordPress can continue adapting in an era where AI shapes discovery and content.</p>\n\n\n\n<p>From there, the schedule unfolded across multiple tracks. The Core AI panel — featuring <a href="https://youtu.be/v_0O6dQ4Q4E">James LePage, Felix Arntz, and Jeffrey Paul</a> — offered a look into how AI tools are woven into WordPress core. Emphasizing ethics, transparency, and user empowerment, the panel painted a roadmap for how WordPress can adopt new technologies without compromising its open-source values.</p>\n\n\n\n<figure class="wp-block-image size-large"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" src="https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&ssl=1" alt="" class="wp-image-19103" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?w=1600&ssl=1 1600w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /></figure>\n\n\n\n<p>Hands-on learning played a significant role throughout the conference. Ryan Welcher’s interactive <em>Block Developer Cookbook</em> drew a packed room as participants worked through community-selected code recipes built on the latest WordPress APIs. By the end, attendees left with working examples and practical strategies they could bring back to their projects.</p>\n\n\n\n<p>The program also highlighted diverse technical perspectives. <a href="https://youtu.be/vBjNqdacbh4">Jemima Abu’s</a> session, <em>A PHP Developer’s Guide to ReactJS</em>, bridged the gap between classic and modern web development. At the same time, Adam Gazzaley’s keynote, <em>A New Era of Experiential Medicine – AI and the Brain</em>, invited attendees to consider the human side of technology, exploring how digital tools can advance health and well-being.</p>\n\n\n\n<p>The second day of presentations, Friday, August 29, opened with creativity and imagination. <a href="https://youtu.be/O7FPiFpRI3o">John Maeda’s</a> keynote, <em>Cozy AI Cooking: WordCamp Edition</em>, used the metaphor of a kitchen to demystify AI, blending storytelling with technical insight to show how curiosity and care can guide builders in integrating AI into their work.</p>\n\n\n\n<p>Later in the day, <a href="https://youtu.be/ORnJTpjA-4w">Tammie Lister’s</a> <em>The System is the Strategy</em> illustrated how design systems provide structure and scalability for growing WordPress projects. At the same time, Adam Silverstein’s Unlock Developer Superpowers with AI showcased new ways developers can use emerging tools to speed up workflows and problem-solving.</p>\n\n\n\n<p>Community stories also took center stage. In Creators around a Campfire, Anne McCarthy, Jamie Marsland, Christian Taylor, Mark Szymanski, and Michael Cunningham reflected on how YouTubers and content creators shape the WordPress ecosystem. Their session highlighted the role of storytelling and education in expanding WordPress’s reach to new audiences worldwide.</p>\n\n\n\n<p>The Sponsor Hall remained lively between sessions — with attendees meeting companies, testing demos, and swapping ideas that extended far beyond the conference halls. They also shared moments together at the arcade built for the event and added smiles, hugs, and laughter, which underscored the atmosphere: WordCamp US was as much about connection as code.</p>\n\n\n\n<h2 class="wp-block-heading">Together Into the Future</h2>\n\n\n\n<p>As the event drew to a close, WordPress Cofounder Matt Mullenweg took the stage to share the current state of WordPress and a vision for its future. He highlighted the growth in social media for WordPress with 124,726 new followers since last WCUS — and the WordPress.org website growing over 10% in users along with almost 20% in new users. </p>\n\n\n\n<p>Matt also spotlighted community initiatives shaping the future of open source education and diversity: WordPress Campus Connect, which has already reached 570 students across 11 events. Combined with the growth in overall events (77) which is a 32.76% increase over 2024. Each effort reinforced the message that WordPress is more than software; it is a global movement driven by people.</p>\n\n\n\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n<iframe loading="lazy" title="WordCamp US 2025 - Ma.tt Mullenweg "Keynote Address & Q&A"" width="500" height="281" src="https://www.youtube.com/embed/45HRzzc0waU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>He concluded with a live Q&A, fielding questions from the audience on the direction of WordPress, its role in an AI-driven web, and the importance of keeping the project open, inclusive, and adaptable. The final notes of the keynote carried into a closing party in downtown Portland, where attendees capped off the week with music, conversation, and the unmistakable joy of a community coming together.</p>\n\n\n\n<h2 class="wp-block-heading">Closing</h2>\n\n\n\n<p>WordCamp US 2025 once again demonstrated what makes the WordPress ecosystem extraordinary: a community committed to building tools, resources, and opportunities that empower people everywhere.</p>\n\n\n\n<p>This year also marked the debut of the <a href="https://airtable.com/appWF6hdXuEOFQMvV/shrV5RZIv0aJjjU00">Open Horizons Scholarship</a>, which funded six recipients — two organizers, three volunteers, and one speaker — from five countries. A total of $14,670 supported their journeys to WCUS. The scholarship, which also supports participation at WordCamp Asia and WordCamp Europe, is designed to make flagship events more accessible to contributors worldwide.</p>\n\n\n\n<p>A heartfelt thank you goes to the organizers, volunteers, sponsors, and speakers who brought the Portland edition to life — and to every attendee who joined us in person or followed along online. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.</p>\n\n\n\n<figure class="wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex" style="border-width:20px">\n<figure data-wp-context="{"imageId":"6919712c533ed"}" data-wp-interactive="core/image" data-wp-key="6919712c533ed" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="577" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19112" src="https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948.jpg?resize=1024%2C577&ssl=1" alt="" class="wp-image-19112" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1024%2C577&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1536%2C865&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=2048%2C1153&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c53850"}" data-wp-interactive="core/image" data-wp-key="6919712c53850" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19124" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997.jpeg?resize=1024%2C576&ssl=1" alt="" class="wp-image-19124" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c53c8e"}" data-wp-interactive="core/image" data-wp-key="6919712c53c8e" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19122" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014.jpeg?resize=1024%2C576&ssl=1" alt="" class="wp-image-19122" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c540a8"}" data-wp-interactive="core/image" data-wp-key="6919712c540a8" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="577" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19107" src="https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752.jpg?resize=1024%2C577&ssl=1" alt="" class="wp-image-19107" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1024%2C577&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1536%2C865&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=2048%2C1153&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c54a14"}" data-wp-interactive="core/image" data-wp-key="6919712c54a14" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="675" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19108" src="https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&ssl=1" alt="" class="wp-image-19108" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=300%2C198&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=768%2C506&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1536%2C1012&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?w=1764&ssl=1 1764w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c54e38"}" data-wp-interactive="core/image" data-wp-key="6919712c54e38" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19113" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076.jpeg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19113" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c5525b"}" data-wp-interactive="core/image" data-wp-key="6919712c5525b" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="433" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19106" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809.jpeg?resize=1024%2C433&ssl=1" alt="" class="wp-image-19106" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1024%2C433&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=300%2C127&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=768%2C325&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1536%2C650&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=2048%2C866&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c55685"}" data-wp-interactive="core/image" data-wp-key="6919712c55685" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="683" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19110" src="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1" alt="" class="wp-image-19110" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c55aaa"}" data-wp-interactive="core/image" data-wp-key="6919712c55aaa" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19119" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827.jpeg?resize=1024%2C576&ssl=1" alt="" class="wp-image-19119" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=2048%2C1152&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button><figcaption class="wp-element-caption">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context="{"imageId":"6919712c55ea9"}" data-wp-interactive="core/image" data-wp-key="6919712c55ea9" class="wp-block-image size-large wp-lightbox-container"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" data-wp-class--hide="state.isContentHidden" data-wp-class--show="state.isContentVisible" data-wp-init="callbacks.setButtonStyles" data-wp-on-async--click="actions.showLightbox" data-wp-on-async--load="callbacks.setButtonStyles" data-wp-on-async-window--resize="callbacks.setButtonStyles" data-id="19133" src="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&ssl=1" alt="" class="wp-image-19133" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?w=2048&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /><button\n class="lightbox-trigger"\n type="button"\n aria-haspopup="dialog"\n aria-label="Enlarge"\n data-wp-init="callbacks.initTriggerButton"\n data-wp-on-async--click="actions.showLightbox"\n data-wp-style--right="state.imageButtonRight"\n data-wp-style--top="state.imageButtonTop"\n >\n <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" viewBox="0 0 12 12">\n <path fill="#fff" d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p>Be sure to mark your calendars for the next global gatherings: <a href="https://asia.wordcamp.org/2026/">WordCamp Asia 2026</a> in Mumbai, India, <a href="https://europe.wordcamp.org/2026/">WordCamp Europe 2026</a> in Kraków, Poland, and WordCamp US 2026 in Phoenix, Arizona. We can’t wait to see you at the next chapter of the WordPress story.</p>\n\n\n\n<p></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19074";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:69:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Portland, Are You Ready? The WCUS 2025 Schedule Has Arrived!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"https://wordpress.org/news/2025/08/portland-are-you-ready-the-wcus-2025-schedule-has-arrived/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 06 Aug 2025 20:03:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:4:"WCUS";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:9:"WordCamps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19004";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:402:"We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brett McSherry";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:5698:"\n<p>We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the future of WordPress.</p>\n\n\n\n<figure class="wp-block-image size-large"><img data-recalc-dims="1" loading="lazy" decoding="async" width="1024" height="576" src="https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader.png?resize=1024%2C576&ssl=1" alt="" class="wp-image-19026" srcset="https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=2048%2C1152&ssl=1 2048w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /></figure>\n\n\n\n<p class="has-text-align-center" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex">\n<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-blue-1-background-color has-background wp-element-button" href="https://us.wordcamp.org/2025/schedule/">View The Schedule</a></div>\n</div>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h2 class="wp-block-heading">Contributor Day — Connect, Collaborate, and Give Back</h2>\n\n\n\n<p>Kicking off the week on Tuesday, August 26 is Contributor Day, it is your chance to roll up your sleeves and make a direct impact on WordPress. Whether you’re a seasoned developer, creative designer, translator, marketer, or simply passionate about open source, there’s a place for you to get involved. Join WordPress teams working on real projects, share your skills, and connect with people across the global community. Contributor Day is also a fantastic place for hiring managers or business owners to meet emerging talent and see contributors in action. Lunch is provided, and both in-person and select remote participation options are available. If you’ve ever wanted to help shape the future of WordPress, this is your moment!<br></p>\n\n\n\n<p>Read more: <a href="https://us.wordcamp.org/2025/schedule/#contributor-day">Start planning your Contributor Day activities >></a></p>\n\n\n\n<h2 class="wp-block-heading">Showcase Day — See WordPress in Action</h2>\n\n\n\n<p>Showcase Day on Wednesday, August 27, shines a spotlight on what’s possible with WordPress. Get inspired by live demos, case studies, and actionable presentations from experts and innovators using WordPress in creative and impactful ways. You’ll see how changemakers, nonprofits, publishers, and agencies use WordPress to solve real-world problems, build new products, and drive the web forward. Highlights include hands-on workshops, technical talks, and practical sessions covering everything from design systems to modern AI. It’s a full day dedicated to celebrating the talent, creativity, and innovation of the WordPress community.</p>\n\n\n\n<p>Read more: <a href="https://us.wordcamp.org/2025/schedule/#showcase-day">See where these inspirational showcases take you >></a></p>\n\n\n\n<h2 class="wp-block-heading">Conference Days — Learn, Connect, and Level Up</h2>\n\n\n\n<p>The main event days for Thursday and Friday, August 28-29, feature a robust mix of technical deep-dives, product masterclasses, and sessions designed for all experience levels. Whether you’re a developer, designer, business owner, or just starting out, you’ll find plenty to explore—from future-focused discussions on AI and performance to hands-on workshops and networking events that bring the community together.</p>\n\n\n\n<p><strong>Keynote Highlights:</strong></p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Amy Sample Ward, CEO of NTEN:</strong> The Tech That Comes Next: How Changemakers, Philanthropists, and Technologists Can Build an Equitable World. Featured Wednesday, August 27.</li>\n\n\n\n<li><strong>Danny Sullivan, from Google Search</strong>: Industry leader, featured Thursday, August 28.</li>\n\n\n\n<li><strong>Matt Mullenweg, Co-founder of WordPress:</strong> Featured Friday, August 29.</li>\n\n\n\n<li>More keynotes announcing soon!</li>\n</ul>\n\n\n\n<p>With dozens of sessions across multiple tracks, plus workshops and networking opportunities, WordCamp US is set to be an unforgettable experience. Don’t miss your chance to connect, share ideas, and help shape the future of the web.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p class="has-text-align-center"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex">\n<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-blue-1-background-color has-background wp-element-button" href="https://us.wordcamp.org/2025/schedule/">View The Schedule</a></div>\n</div>\n\n\n\n<p></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"19004";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:63:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Maintenance Releases for WordPress branches 4.7 to 6.7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"https://wordpress.org/news/2025/08/maintenance-releases-for-wordpress-branches-4-7-to-6-7/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 05 Aug 2025 19:11:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:7:"General";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:14:"minor-releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=18997";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:374:"Following on from the WordPress 6.8.2 maintenance release last month, the included update to the root security certificate bundle has been backported to all branches back to 4.7. This ensures that when your site performs server-side HTTP requests, the most up-to-date information about trusted security certificates is used. Further information can be found on the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"John Blackbourn";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2119:"\n<p>Following on from <a href="https://wordpress.org/news/2025/07/wordpress-6-8-2-maintenance-release/">the WordPress 6.8.2 maintenance release last month</a>, the included update to the root security certificate bundle has been backported to all branches back to 4.7. This ensures that when your site performs server-side HTTP requests, the most up-to-date information about trusted security certificates is used. Further information can be found on <a href="https://core.trac.wordpress.org/ticket/62811">the Core Trac ticket</a>.</p>\n\n\n\n<p>A new maintenance release for each branch from 4.7 to 6.7 is now available. If you have sites on these branches and they support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>The latest and only supported version of WordPress remains as 6.8.2. This is being done as a courtesy for sites still running older versions of WordPress. You can <a href="https://wordpress.org/wordpress-6.8.2.zip">download WordPress 6.8.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<h2 class="wp-block-heading">Thank you to these WordPress contributors</h2>\n\n\n\n<p>Special thanks to <a href=''https://profiles.wordpress.org/desrosj/'' class=''mention''><span class=''mentions-prefix''>@</span>desrosj</a>, <a href=''https://profiles.wordpress.org/ocean90/'' class=''mention''><span class=''mentions-prefix''>@</span>ocean90</a>, <a href=''https://profiles.wordpress.org/davidbaumwald/'' class=''mention''><span class=''mentions-prefix''>@</span>davidbaumwald</a>, <a href=''https://profiles.wordpress.org/peterwilsoncc/'' class=''mention''><span class=''mentions-prefix''>@</span>peterwilsoncc</a>, <a href=''https://profiles.wordpress.org/jorbin/'' class=''mention''><span class=''mentions-prefix''>@</span>jorbin</a>, <a href=''https://profiles.wordpress.org/estelaris/'' class=''mention''><span class=''mentions-prefix''>@</span>estelaris</a>, and <a href=''https://profiles.wordpress.org/johnbillion/'' class=''mention''><span class=''mentions-prefix''>@</span>johnbillion</a> for backporting and releasing this update.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"18997";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:63:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 6.8.2 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/news/2025/07/wordpress-6-8-2-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Jul 2025 15:41:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:14:"minor-releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=18903";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:357:"WordPress 6.8.2 is now available! This minor release includes fixes for 20 Core tickets and 15 Block Editor issues. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 6.8.2 is a short-cycle maintenance release. More maintenance releases may be made available throughout 2025. If you have sites that support […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Jb Audras";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:10720:"\n<h2 class="wp-block-heading">WordPress 6.8.2 is now available!</h2>\n\n\n\n<p>This minor release includes fixes for <a href="https://core.trac.wordpress.org/query?resolution=fixed&milestone=6.8.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority">20 Core tickets</a> and <a href="https://github.com/WordPress/gutenberg/pull/70557">15 Block Editor issues</a>. For a full list of bug fixes, please refer to the <a href="https://make.wordpress.org/core/2025/07/08/wordpress-6-8-2-rc1-is-now-available/">release candidate announcement.</a></p>\n\n\n\n<p>WordPress 6.8.2 is a short-cycle maintenance release. More maintenance releases may be made available throughout 2025.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href="https://wordpress.org/wordpress-6.8.2.zip">download WordPress 6.8.2 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href="https://wordpress.org/support/wordpress-version/version-6-8-2">visit the HelpHub version page</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Dropping security updates for WordPress versions 4.1 through 4.6</h2>\n\n\n\n<p>This is not directly related to the 6.8.2 maintenance release, but <a href="https://wordpress.org/news/2025/06/dropping-security-updates-for-wordpress-versions-4-1-through-4-6/">branches 4.1 to 4.6 had their final release today</a>. These branches won’t receive any security update anymore.</p>\n\n\n\n<h2 class="wp-block-heading">Thank you to these WordPress contributors</h2>\n\n\n\n<p>WordPress 6.8.2 was led by <a href="https://profiles.wordpress.org/audrasjb/">Jb Audras</a>, <a href="https://profiles.wordpress.org/estelaris/">Estela Rueda</a> and <a href="https://profiles.wordpress.org/zunaid321/">Zunaid Amin</a>.</p>\n\n\n\n<p>Special thanks to <a href=''https://profiles.wordpress.org/davidbaumwald/'' class=''mention''><span class=''mentions-prefix''>@</span>davidbaumwald</a>, <a href=''https://profiles.wordpress.org/sergeybiryukov/'' class=''mention''><span class=''mentions-prefix''>@</span>sergeybiryukov</a>, <a href=''https://profiles.wordpress.org/mamaduka/'' class=''mention''><span class=''mentions-prefix''>@</span>mamaduka</a>, <a href=''https://profiles.wordpress.org/wildworks/'' class=''mention''><span class=''mentions-prefix''>@</span>wildworks</a> and <a href=''https://profiles.wordpress.org/jorbin/'' class=''mention''><span class=''mentions-prefix''>@</span>jorbin</a> for their help on specific release tasks.</p>\n\n\n\n<p>WordPress 6.8.2 would not have been possible without the contributions of the following 96 people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class="is-style-wporg-props-medium has-white-color has-midnight-gradient-background has-text-color has-background has-link-color has-normal-font-size wp-elements-2ad7deb15a87fd29427f001e4c18a1ac"><a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/zieladam">Adam Zieliński</a>, <a href="https://profiles.wordpress.org/wildworks">Aki Hamano</a>, <a href="https://profiles.wordpress.org/alexstine">Alex Stine</a>, <a href="https://profiles.wordpress.org/anatolbroder">Anatol Broder</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/ankitkumarshah">Ankit Kumar Shah</a>, <a href="https://profiles.wordpress.org/annezazu">annezazu</a>, <a href="https://profiles.wordpress.org/azharderaiya">Azhar Deraiya</a>, <a href="https://profiles.wordpress.org/benjamingosset">Benjamin Gosset</a>, <a href="https://profiles.wordpress.org/bhubbard">Brandon Hubbard</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/brhodes">brhodes</a>, <a href="https://profiles.wordpress.org/poena">Carolina Nymark</a>, <a href="https://profiles.wordpress.org/czarate">Chris Zarate</a>, <a href="https://profiles.wordpress.org/courane01">Courtney Robertson</a>, <a href="https://profiles.wordpress.org/talldanwp">Daniel Richards</a>, <a href="https://profiles.wordpress.org/darshitrajyaguru97">Darshit Rajyaguru</a>, <a href="https://profiles.wordpress.org/davidbaumwald">David Baumwald</a>, <a href="https://profiles.wordpress.org/dmsnell">Dennis Snell</a>, <a href="https://profiles.wordpress.org/dhruvang21">Dhruvang21</a>, <a href="https://profiles.wordpress.org/dilipbheda">Dilip Bheda</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/divinenephron">divinenephron</a>, <a href="https://profiles.wordpress.org/dustintechsmith">dustintechsmith</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/im3dabasia1">Eshaan Dabasiya</a>, <a href="https://profiles.wordpress.org/estelaris">Estela Rueda</a>, <a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>, <a href="https://profiles.wordpress.org/fabiankaegy">Fabian Kägy</a>, <a href="https://profiles.wordpress.org/faisalahammad">Faisal Ahammad</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/guddu1315">Gaurang Dabhi</a>, <a href="https://profiles.wordpress.org/mamaduka">George Mamadashvili</a>, <a href="https://profiles.wordpress.org/gernberg">gernberg</a>, <a href="https://profiles.wordpress.org/gziolo">Greg Ziółkowski</a>, <a href="https://profiles.wordpress.org/harshgajipara">Harsh Gajipara</a>, <a href="https://profiles.wordpress.org/helgatheviking">HelgaTheViking</a>, <a href="https://profiles.wordpress.org/abcd95">Himanshu Pathak</a>, <a href="https://profiles.wordpress.org/audrasjb">Jb Audras</a>, <a href="https://profiles.wordpress.org/JeffPaul">Jeffrey Paul</a>, <a href="https://profiles.wordpress.org/jdy68">Jenny Dupuy</a>, <a href="https://profiles.wordpress.org/luminuu">Jessica Lyschik</a>, <a href="https://profiles.wordpress.org/jigarpanchal">Jigar Panchal</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/mindctrl">John Parris</a>, <a href="https://profiles.wordpress.org/jonsurrell">Jon Surrell</a>, <a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/spacedmonkey">Jonny Harris</a>, <a href="https://profiles.wordpress.org/kausaralm">Kausar Alam</a>, <a href="https://profiles.wordpress.org/kishanjasani">Kishan Jasani</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/pfefferle">Matthias Pfefferle</a>, <a href="https://profiles.wordpress.org/megane9988">megane9988</a>, <a href="https://profiles.wordpress.org/mosescursor">Moses Cursor Ssebunya</a>, <a href="https://profiles.wordpress.org/mukesh27">Mukesh Panchal</a>, <a href="https://profiles.wordpress.org/mwillman1991">mwillman1991</a>, <a href="https://profiles.wordpress.org/bugnumber9">Nazar Hotsa</a>, <a href="https://profiles.wordpress.org/nidhidhandhukiya">nidhidhandhukiya</a>, <a href="https://profiles.wordpress.org/nikunj8866">Nikunj Hatkar</a>, <a href="https://profiles.wordpress.org/oferlaor">oferlaor</a>, <a href="https://profiles.wordpress.org/oglekler">Olga Gleckler</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/paulstanos">paulstanos</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/puggan">puggan</a>, <a href="https://profiles.wordpress.org/ravigadhiyawp">Ravi Gadhiya</a>, <a href="https://profiles.wordpress.org/youknowriad">Riad Benguella</a>, <a href="https://profiles.wordpress.org/rollybueno">Rolly Bueno</a>, <a href="https://profiles.wordpress.org/room34">room34</a>, <a href="https://profiles.wordpress.org/sainathpoojary">Sainath Poojary</a>, <a href="https://profiles.wordpress.org/sajjad67">Sajjad Hossain Sagor</a>, <a href="https://profiles.wordpress.org/Sam_a">sam_a</a>, <a href="https://profiles.wordpress.org/sandeepdahiya">Sandeep Dahiya</a>, <a href="https://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shanemuir">Shane Muirhead</a>, <a href="https://profiles.wordpress.org/siliconforks">siliconforks</a>, <a href="https://profiles.wordpress.org/sirlouen">SirLouen</a>, <a href="https://profiles.wordpress.org/sabernhardt">Stephen Bernhardt</a>, <a href="https://profiles.wordpress.org/sukhendu2002">Sukhendu Sekhar Guria</a>, <a href="https://profiles.wordpress.org/karmatosed">Tammie Lister</a>, <a href="https://profiles.wordpress.org/TobiasBg">Tobias Bäthge</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="https://profiles.wordpress.org/ugyensupport">Ugyen Dorji</a>, <a href="https://profiles.wordpress.org/uxl">uxl</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/whaze">whaze</a>, <a href="https://profiles.wordpress.org/getsyash">Yash B</a>, <a href="https://profiles.wordpress.org/yogeshbhutkar">Yogesh Bhutkar</a>, and <a href="https://profiles.wordpress.org/zunaid321">Zunaid Amin</a></p>\n\n\n\n<h2 class="wp-block-heading">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href="https://core.trac.wordpress.org/report/6">pick a ticket</a>, and join the conversation on Slack, in the <a href="https://wordpress.slack.com/archives/C02RQBWTW">#core</a> and <a href="https://wordpress.slack.com/archives/C080HLPP2Q6">#6-8-release-leads</a> channels. Need help? Check out the <a href="https://make.wordpress.org/core/handbook/">Core Contributor Handbook</a>.</p>\n\n\n\n<p class="has-text-align-right"><em>Thanks to <a href=''https://profiles.wordpress.org/estelaris/'' class=''mention''><span class=''mentions-prefix''>@</span>estelaris</a> and <a href=''https://profiles.wordpress.org/zunaid321/'' class=''mention''><span class=''mentions-prefix''>@</span>zunaid321</a> for proofreading.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"18903";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:60:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"Celebrating Kim Parsell: 2025 WordCamp US Scholarship Applications Open";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"https://wordpress.org/news/2025/07/kim-parsell-2025-wcus-scholarship-applications-open/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2025 18:57:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=18911";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:364:"The WordPress Foundation is pleased to announce the return of the Kim Parsell Memorial Scholarship for WordCamp US 2025. Applications are being accepted until July 25, 2025. Remembering Kim Parsell Kim Parsell was a dedicated contributor and a beloved member of the WordPress community. Her passion for open source and her welcoming spirit inspired many, […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brett McSherry";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:6224:"\n<p>The WordPress Foundation is pleased to announce the return of the <strong>Kim Parsell Memorial Scholarship</strong> for WordCamp US 2025. Applications are being accepted until <strong>July 25, 2025</strong>.</p>\n\n\n\n<figure class="wp-block-image aligncenter size-full has-custom-border"><img data-recalc-dims="1" loading="lazy" decoding="async" width="604" height="370" src="https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?resize=604%2C370&ssl=1" alt="" class="wp-image-18912" style="border-width:25px;border-radius:40px" srcset="https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?w=604&ssl=1 604w, https://i0.wp.com/wordpress.org/news/files/2025/07/wpdocs-team-1.webp?resize=300%2C184&ssl=1 300w" sizes="auto, (max-width: 604px) 100vw, 604px" /></figure>\n\n\n\n<div class="wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-6cbf45de wp-block-group-is-layout-constrained" style="margin-top:48px;margin-bottom:48px;padding-top:24px;padding-bottom:24px">\n<div class="wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:2%"></div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:96%">\n<h2 class="wp-block-heading">Remembering Kim Parsell</h2>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">\n<figure class="wp-block-image size-full"><img data-recalc-dims="1" loading="lazy" decoding="async" width="400" height="400" src="https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=400%2C400&ssl=1" alt="" class="wp-image-18956" srcset="https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?w=400&ssl=1 400w, https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/07/Kim-parsell-twitter-image-2.jpeg?resize=150%2C150&ssl=1 150w" sizes="auto, (max-width: 400px) 100vw, 400px" /></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:60%">\n<p>Kim Parsell was a dedicated contributor and a beloved member of the WordPress community. Her passion for open source and her welcoming spirit inspired many, both online and in person. Each year at WordCamp US, the WordPress Foundation celebrates Kim’s legacy by supporting contributors who share her commitment and enthusiasm. The Kim Parsell Memorial Scholarship aims to make it easier for deserving community members to attend WordCamp US, reflecting Kim’s belief in making WordPress accessible and inclusive for all.</p>\n</div>\n</div>\n\n\n\n<p style="padding-top:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10)">If you’re unfamiliar with Kim’s story or her invaluable role in the community, we encourage you to <a href="https://us.wordcamp.org/2019/memories-of-kim-parsell/">read these heartfelt tributes</a> collected from friends and colleagues.</p>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:2%"></div>\n</div>\n</div>\n\n\n\n<h2 class="wp-block-heading">Scholarship Eligibility</h2>\n\n\n\n<p>This year, a single scholarship will be awarded. To qualify, applicants must:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Identify as a woman</li>\n\n\n\n<li>Be actively involved as a contributor to WordPress</li>\n\n\n\n<li>Have never attended WordCamp US before</li>\n\n\n\n<li>Demonstrate a need for financial support to attend the event</li>\n</ul>\n\n\n\n<p>If you meet these qualifications, we invite you to apply before the July 25 deadline. All applicants will be notified of the decision by August 7, 2025.</p>\n\n\n\n<p>For additional information, visit the <a href="https://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/">Kim Parsell Memorial Scholarship page</a> hosted by the WordPress Foundation.</p>\n\n\n\n<div class="wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-8503c47b wp-block-group-is-layout-constrained">\n<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>\n\n\n\n<p class="has-text-align-center has-large-font-size"><strong>Ready to Apply?</strong></p>\n\n\n\n<div style="height:25px" aria-hidden="true" class="wp-block-spacer"></div>\n\n\n\n<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex">\n<div class="wp-block-button"><a class="wp-block-button__link has-text-align-center wp-element-button" href="https://wordcampcentral.survey.fm/wcus-2025-kim-parsell-scholarship-application">Submit Your Application Today</a></div>\n</div>\n\n\n\n<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>\n</div>\n\n\n\n<figure class="wp-block-image aligncenter size-full has-custom-border"><img data-recalc-dims="1" loading="lazy" decoding="async" width="500" height="333" src="https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?resize=500%2C333&ssl=1" alt="" class="wp-image-18917" style="border-width:25px;border-radius:40px" srcset="https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?w=500&ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2025/07/kim-jose.jpeg?resize=300%2C200&ssl=1 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></figure>\n\n\n\n<h2 class="wp-block-heading">Join the Celebration</h2>\n\n\n\n<ul class="wp-block-list">\n<li>Tickets for WordCamp US 2025 are now available—secure yours soon!</li>\n\n\n\n<li>Volunteer applications are open until July 11, 2025</li>\n\n\n\n<li>Interested in supporting the event? Explore our <a>sponsorship opportunities</a></li>\n</ul>\n\n\n\n<p>Help us spread the word about this opportunity and make WordCamp US 2025 even more special.</p>\n\n\n\n<p></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"18911";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:63:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:92:"Introducing WordPress Credits: A New Contribution Internship Program for University Students";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:127:"https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2025 16:56:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:17:"WordPress Credits";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=18913";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:393:"The WordPress Foundation is proud to launch WordPress Credits, a contribution-focused internship program that brings university students into the heart of the WordPress open source project. While WordPress thrives on contributions from a global volunteer community, many students and newcomers face barriers to entry, such as a lack of structured guidance or real-world experience in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Isotta Peira";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:4712:"\n<p>The WordPress Foundation is proud to launch WordPress Credits, a contribution-focused internship program that brings university students into the heart of the WordPress open source project. While WordPress thrives on contributions from a global volunteer community, many students and newcomers face barriers to entry, such as a lack of structured guidance or real-world experience in open source projects. This new program is designed to bridge that gap, nurturing future contributors and ensuring WordPress remains innovative, inclusive, and sustainable for years to come.</p>\n\n\n\n<p>The <a href="https://gamma.app/docs/EN-WordPress-Credits-vz0k2vr1ulg91qq?mode=doc">pilot program</a>, developed in partnership with the University of Pisa, was announced on stage at WordCamp Europe 2025 by Matt Mullenweg and Mary Hubbard. Since then, it has attracted interest from students across various fields of study, including humanities, computer science, and communication. Companies in the WordPress ecosystem have also expressed support and interest in contributing to the project. In response to the growing interest from both community members and academic institutions, we are now inviting more universities to join the initiative.</p>\n\n\n\n<p>Open to students from all fields of study, the program blends structured onboarding with a personalized contribution project. Activities are adapted to each student’s degree program and familiarity with WordPress, aiming to develop transferable skills, academic-related competencies, and active participation in the WordPress community. Internship durations may vary depending on the university or educational institution. Some may align with academic semesters (typically 3–4 months), while others, like the University of Pisa, allow students to sign up year-round with a requirement to complete a set number of contribution hours (e.g. 150 hours). Flexible arrangements can be discussed to meet the specific requirements of each institution.</p>\n\n\n\n<p>Foundational Training includes:</p>\n\n\n\n<ul class="wp-block-list">\n<li>An introduction to open source principles and the WordPress Foundation</li>\n\n\n\n<li>Getting familiar with community tools (Slack, Make blogs, Learn platform, GitHub)</li>\n\n\n\n<li>Setting up a personal WordPress site and publishing content</li>\n</ul>\n\n\n\n<p>Each student will choose a contribution area and design their own personal project within that area. Examples of possible projects include:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Translating interfaces or documentation</li>\n\n\n\n<li>Creating multilingual subtitles for educational videos</li>\n\n\n\n<li>Contributing code or performing testing</li>\n\n\n\n<li>Supporting product development or design</li>\n\n\n\n<li>Writing or editing content</li>\n\n\n\n<li>Assisting with community event organization</li>\n\n\n\n<li>Developing training materials for Learn WordPress</li>\n\n\n\n<li>Creating open source tools</li>\n\n\n\n<li>And much more…<br></li>\n</ul>\n\n\n\n<p>Interns are guided by an experienced mentor specific to their chosen area and supported by a dedicated WordPress Foundation contact person throughout the program. All student contributions, whether code, translations, documentation, or educational materials, will be publicly visible and integrated into official WordPress projects and resources, directly benefiting the wider community.</p>\n\n\n\n<p><strong>Interested universities and educational institutions</strong> interested in participating can reach out by filling <a href="https://airtable.com/appIzQKfwTn5dyPVp/shrYvY0CDNIkILIre">the interest form</a>.</p>\n\n\n\n<p>We also invite companies in the WordPress ecosystem to support this initiative by sponsoring mentors who will guide and empower the next generation of contributors, or by providing tools and resources that help students succeed in their contribution journey. </p>\n\n\n\n<p><strong>If your company is interested in getting involved</strong>, please visit the <a href="https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/">Company Guide</a> to learn more and <a href="https://airtable.com/appIzQKfwTn5dyPVp/shrKDkjeUdw8Fof34">fill out the form</a> to join the program.</p>\n\n\n\n<p><em>By welcoming students, mentors, sponsors, and volunteers into this initiative, we are building a stronger and more connected WordPress community. Each person who takes part, whether they guide a student, share their experiences, provide sponsorship, or simply help spread the word, helps ensure that open source remains vibrant and accessible for all. Together, we are not just supporting individual contributors; we are shaping the future of WordPress and open source itself.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:7:"post-id";a:1:{i:0;a:5:{s:4:"data";s:5:"18913";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:9:"\n hourly ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:4:"\n 1 ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:30:"com-wordpress:feed-additions:1";a:1:{s:4:"site";a:1:{i:0;a:5:{s:4:"data";s:8:"14607090";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";O:48:"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary":1:{s:7:"\0*\0data";a:12:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 16 Nov 2025 06:48:13 GMT";s:12:"content-type";s:34:"application/rss+xml; charset=UTF-8";s:4:"vary";s:37:"Accept-Encoding, accept, content-type";s:25:"strict-transport-security";s:12:"max-age=3600";s:6:"x-olaf";s:3:"⛄";s:13:"last-modified";s:29:"Tue, 11 Nov 2025 15:40:08 GMT";s:4:"link";s:63:"<https://wordpress.org/news/wp-json/>; rel="https://api.w.org/"";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:16:"content-encoding";s:4:"gzip";s:7:"alt-svc";s:19:"h3=":443"; ma=86400";s:4:"x-nc";s:9:"HIT ord 1";}}s:5:"build";i:1727716820;s:21:"cache_expiration_time";i:1763318893;s:23:"__cache_expiration_time";i:1763318893;}', 'off');
INSERT INTO `wp8u_options` VALUES
(1101, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1763318893', 'off'),
(1102, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1763275693', 'off'),
(1103, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1763318893', 'off'),
(1104, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:6:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:112:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:107:"Gutenberg Times: WordPress 6.9 Dev Notes, WordCamp Canada talks, Interactivity API — Weekend Edition #349";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://gutenbergtimes.com/?p=42773";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:111:"https://gutenbergtimes.com/wordpress-6-9-dev-notes-wordcamp-canada-talks-interactivity-api-weekend-edition-349/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:25243:"<p>Hi there, </p>\n\n\n\n<p>We are getting close to the WordPress 6.9 release. Below you find links to published Developer notes. You can also wait for the Source of Truth to be published next week to learn about besides developer changes coming to WordPress 6.9.</p>\n\n\n\n<p>On a personal note, I had great fun facilitating the first WordPress Meetup in München after an 11-month hiatus. I met the wonderful people who co-founded the meeting back in 2014, the same year I started co-organizing a meetup in Naples. It’s quite a mixed group of bloggers, developers, designers and agencies. I am glad to now have a local meetup to go to every month and learn more about the German WordPress users and businesses. If you don’t have a local WordPress meetup, you might <a href="https://make.wordpress.org/community/handbook/meetup-organizer/">consider starting one</a>. It’s a lot of fun networking with like-minded people. </p>\n\n\n\n<p>Yours, <img alt="💕" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png" style="height: 1em;" /><br /><em>Birgit</em></p>\n\n\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%"></div>\n\n\n<h2 class="wp-block-heading" id="0-word-press-release-information">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong><a href="https://github.com/WordPress/gutenberg/releases/tag/v22.1.0-rc.1">Gutenberg 22.1 RC1</a></strong> is now available for testing.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><a href="https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/"><strong>WordPress 6.9 RC1</strong></a> is now available and it’s time for you, if you haven’t yet, to test your themes, plugins and custom code against the new version. The contributors also published Dev Notes for this release.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>The <strong>Source of Truth for WordPress 6.9 </strong>is in review and on the publishing schedule here for November 18th, 2025. You can take a sneak peek of the draft on <a href="https://docs.google.com/document/d/1SJm3E0yE0yyYV_Vo8O-3lkor_Q4E4dQYLs3Nobwc9Q4/edit?tab=t.x6i0zoiizlje">Google Doc</a>, in case you need it earlier to comply with any of your publishing deadlines. </p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><a href="https://wordpress.org/state-of-the-word/">State of the Word 2025</a> will include highlights and demos of the most important features of this release. The event will be <a href="https://www.youtube.com/wordpress">livestreamed on YouTube</a>.</p>\n\n\n\n<h3 class="wp-block-heading" id="dev-notes-for-wordpress-6-9">Dev notes for WordPress 6.9 </h3>\n\n\n\n<figure class="wp-block-image size-large"><img alt="Highlight grid WordPress 6.9 " class="wp-image-42826" height="375" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/WordPress-6.9-Highlight-grid-2025-11-14.png?resize=652%2C375&ssl=1" width="652" /></figure>\n\n\n\n<p>More dev notes are available on the Make Core blog. </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/">Theme.json Border Radius Presets Support in WordPress 6.9</a>.</li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/">Heading Block CSS Specificity Fix in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/">Interactivity API’s client navigation improvements in WordPress 6.9</a> </li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/">Changes to the Interactivity API in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/">Preparing the Post Editor for Full iframe Integration</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/">Block Bindings improvements in WordPress 6.9</a> </li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/">Theme.json Border Radius Presets Support in WordPress 6.9</a> </li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/">DataViews, DataForm, et al. in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/09/04/prettier-emails-supporting-inline-embedded-images/">Prettier Emails: Supporting Inline Embedded Images</a></li>\n</ul>\n\n\n\n<p><strong>Dev notes</strong> on accessibility updates, frontend performance enhancements, the underlying architecture of the new Notes feature, updates to the HTML API, the new Block Processor, and PHP and UTF_8 supports are still in the works and are expected to be published next week together with the Fieldguide. </p>\n\n\n\n<p>I mentioned them before, there are a few tutorials on the <strong>WordPress Developer blog</strong> about how to use WordPress 6.9 features. </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://developer.wordpress.org/news/2025/11/how-wordpress-6-9-gives-forms-a-theme-json-makeover/">How WordPress 6.9 gives forms a theme.json makeover</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/">Styling accordions in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/">Border radius size presets in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/">Registering custom social icons in WordPress 6.9</a></li>\n</ul>\n\n\n\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">\n<p><img alt="🎙" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png" style="height: 1em;" /> The latest episode is <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a> with <strong>Ellen Bauer</strong>, project lead at Automattic. </p>\n\n\n\n<figure class="wp-block-image size-full is-style-no-vertical-margin"><img alt="Gutenberg Changelog 124 with Ellen Bauer and Birgit Pauli-Haack" class="wp-image-42695" height="185" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-07-at-18.56.39.png?resize=652%2C185&ssl=1" width="652" /></figure>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p>The latest monthly roundup post is <a href="https://developer.wordpress.org/news/2025/11/whats-new-for-developers-november-2025/"><strong>What’s new for developers? (November 2025)</strong></a> was again stoke full of information. It covers al lot you might already know, but also lesser-known updates, like PHP-only block registration, enhanced Gallery aspect ratios. WordPress Playground gains file browser capabilities; AI team stabilizes core packages implementing server-side Abilities API.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> published an <strong><a href="https://developer.wordpress.org/news/2025/11/introducing-the-wordpress-abilities-api/">introduction to the WordPress Abilities API</a> </strong>that’s coming to WordPress in the next release. You’ll learn what this new Ability will unlock for developers and how to use it in your plugins and themes now.</p>\n\n\n\n<figure class="wp-block-image size-large"><a href="https://developer.wordpress.org/news/2025/11/introducing-the-wordpress-abilities-api/"><img alt="Featured image of the Abilities API article on the WordPreess Developer Blog" class="wp-image-42843" height="372" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/aiblities-api.png?resize=652%2C372&ssl=1" width="652" /></a></figure>\n\n\n\n<h3 class="wp-block-heading" id="block-editor-related-talks-from-wordcamp-canada">Block editor-related talks from WordCamp Canada </h3>\n\n\n\n<figure class="wp-block-image size-full"><a href="https://wordpress.tv/event/wordcamp-canada-2025/"><img alt="WordCamp Canada feature image" class="wp-image-42856" height="435" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/welcome-scaled.webp?resize=652%2C435&ssl=1" width="652" /></a></figure>\n\n\n\n<p>The team of <a href="https://wordpress.tv/event/wordcamp-canada-2025/">WordCamp Canada </a>published the recordings of the talks on WordPress TV here is a selections: </p>\n\n\n\n<p><a href="https://wordpress.tv/2025/11/10/back-on-the-block-my-reasons-for-returning-to-the-full-site-editor/"><strong>Back on the Block: My Reasons for Returning to the Full Site Editor</strong></a> with <strong>Joe R Simpson</strong>. This interactive presentation explores WordPress’s current state, Full Site Editor capabilities, and emerging features like AI and the Style Guide.</p>\n\n\n\n<p><a href="https://wordpress.tv/2025/11/10/building-for-content-editors-why-designers-and-developers-need-to-care-more/"><strong>Building for Content Editors: Why Designers and Developers Need To Care More</strong></a> with Jesse Dyck. Block editors offer powerful flexibility but require deliberate curation through guardrails and customization to prevent brand inconsistency, accessibility failures, and editor overwhelm while empowering content teams to work efficiently.</p>\n\n\n\n<p><a href="https://wordpress.tv/2025/11/10/interactivity-api-for-common-dom-interactions/"><strong>Interactivity API for common DOM interactions</strong></a> with Austin Atkinson. Leveraging WordPress’s Interactivity API to handle typical front-end interactions—like clicks, hovers, form submissions, or dynamic content updates—by directly manipulating the Document Object Model (DOM) rather than relying on separate JavaScript frameworks or libraries.</p>\n\n\n\n<p><a href="https://wordpress.tv/2025/11/10/the-block-developer-cookbook-wceh-2025-edition/"><strong>The Block Developer Cookbook: WCEH 2025 Edition</strong></a> with <strong>Ryan Welcher</strong>. Expand your block development skills with hands-on guidance and real-world examples.</p>\n\n\n\n<h2 class="wp-block-heading" id="0-p">Plugins, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In <a href="https://wpbuilds.com/2025/11/13/445-more-fun-in-wordpress-how-nick-hamze-uses-ai-to-build-unusual-wordpress-blocks/"><strong>episode 445 of the WPBuilds podcast</strong></a>, <strong>Nathan Wrigley </strong>interviews <strong>Nick Hamze</strong>, a lawyer-turned-Pokemon-card-shop-owner who builds peculiar WordPress blocks using AI. Hamze championed fun over convention, running Automatic’s merch operations before launching Izzy’s Gym. Armed with Telex, he constructs dozens of quirky blocks—dice rollers, glitchy text effects, custom integrations—in minutes. He dismisses distribution concerns, arguing WordPress needs personality restored; creation trumps monetization. Hamze advocates democratizing development: AI enables everyone, not just coders, to build niche solutions.</p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>In his post <a href="https://justintadlock.com/archives/2025/11/08/breadcrumbs-reimagined-again"><strong>Breadcrumbs Reimagined. Again.</strong></a>, <strong>Justin Tadlock</strong> announced the update to version 4.0 of his <a href="https://wordpress.org/plugins/x3p0-breadcrumbs/">Breadcrumbs block plugin.</a> The update makes previously developer-only features available in the editor, including customizable labels and options for post taxonomy. The public API has been simplified, now offering easier function calls and JSON-LD support for SEO. While the change may affect some users, the plugin now allows for advanced breadcrumb setup without needing coding skills, while still providing robust tools for developers. Check out <a href="https://github.com/x3p0-dev/x3p0-breadcrumbs/blob/master/CHANGELOG.md">the full changelog</a> with all the updates.</p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="Screenshot from the Breadcrumbs block plugin" class="wp-image-42829" height="350" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/breadcrumbs-labels.webp?resize=652%2C350&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Andrew Butler</strong>, a Content Strategist over at WordPress VIP, reported on <strong><a href="https://wpvip.com/blog/collaborative-editing-wordpress-vip/">the future of collaborative editing</a></strong> and how it’s making teamwork way easier. Think Google Docs-style editing right in WordPress! Now, multiple folks can jump in and edit posts together, seeing each other’s cursors and presence indicators in real time. Plus, those in-line Notes are super handy for providing feedback without having to leave the editor. WordPress VIP tested and implemented what will come to WordPress core in upcoming releases. <strong>Anne McCarthy</strong> mentioned contributor efforts in her <a href="https://make.wordpress.org/core/2025/11/06/update-on-phase-3-2025/">Update on Phase 3: Collaboration efforts (Nov 2025)</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Joe Fylan</strong> shared via WordPress.com blog, <a href="https://wordpress.com/blog/2025/11/13/wordpress-blocks-made-with-telex/"><strong>12 Cool AI-Powered WordPress Blocks Made with Telex</strong></a>, showcasing Automattic’s free browser-based <a href="https://telex.automattic.ai/">Telex</a> tool that transforms plain-language descriptions into functional WordPress blocks. Featured blocks range from interactive games like Minesweeper and personality quizzes to practical tools like recipe publishers, weather forecasters, and scroll indicators. If you have an idea for block but are not a programmer, you can create, customize, download, and share blocks without coding knowledge, making block development accessible to everyone.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>If you are keen to learn how to do some more comprehensive prompting, Check out <strong>Tammie Lister</strong>‘s site <a href="https://blocktober.fun/">Blocktober.fun</a> where you can look at her collection of blocks and the instructions she gave to the AI.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Jake Spurlock</strong> shared an update on his Raptorize plugins to bring it into the block ear: <a href="https://jakespurlock.com/2025/11/raptorize-it-15-years-later-now-with-blocks/"><strong>Raptorize It: 15 Years Later, Now With Blocks</strong></a>. “Look, I could tell you it’s about maintaining legacy code or demonstrating modern WordPress development practices. And sure, those are valid reasons. But really, it’s 2025 and the world still needs more velociraptors on websites. Some traditions are worth preserving.”, he wrote. You can see it in <a href="https://icodeforapurpose.com/raptorized/">action on my other site.</a> Switch on sound for the full experience. </p>\n\n\n\n<figure class="wp-block-image size-full"><a href="https://icodeforapurpose.com/raptorized/"><img alt="Still image from the Raptorized plugins in action. " class="wp-image-42838" height="380" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-14-at-17.32.43.png?resize=652%2C380&ssl=1" width="652" /></a></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>New in the WordPress Plugin repository: <a href="https://wordpress.org/plugins/native-blocks-carousel/"><strong>Any Block Carousel Slider</strong></a> by <strong>Arthur Ballan</strong>, aka Web Lazer, a freelancer from Rennes, France. It stands out as it is implemented with CSS only. A “carousel slider block plugin that instantly converts supported native WordPress blocks (Query Loop/Post Template, Group, Gallery) into a responsive carousel slider without adding a dedicated block or loading a JavaScript library.” Ballan wrote in the description. I tested it with a few images and it’s super fast. </p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="Screenshot using the Any Block Carousel Slider." class="wp-image-42840" height="304" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-14-at-17.38.57.png?resize=652%2C304&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Wes Theron</strong> published another short tutorial using WordPress. This time on <a href="https://www.youtube.com/watch?v=y_E-E4N6ds8"><strong>how to create a custom 404 page</strong></a>, a page that’s displayed when someone comes from a bad or broken link. He walks you through the process of changing the template and also shows a few examples you can use as inspiration.</p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<h2 class="wp-block-heading" id="2-word-press-6-0-1-and-6-1-scheduled">Themes, Blocks and Tools </h2>\n\n\n\n<p><strong>Rich Tabor</strong> started a new series called <a href="https://rich.blog/wordpress-explorations/"><strong>WordPress Explorations</strong></a>, “where I’m exploring new, far-out ideas about WordPress”. In his first post, <a href="https://rich.blog/pages-and-layers/"><strong>Pages & Layers</strong></a>, Tabor explores a WordPress interface concept addressing user confusion: navigating pages requires leaving the editor entirely. He proposes a persistent sidebar with tabbed navigation between pages and block layers, allowing seamless page switching and creation without context-switching. </p>\n\n\n\n<p>As a follow-up to his post on <a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/">styling an accordion block</a>, <strong>Justin Tadlock</strong> published <a href="https://developer.wordpress.org/news/snippets/schema-org-microdata-for-accordion-block-faqs/"><strong>Snippet: Schema.org microdata for Accordion block FAQs</strong></a>. It’s a short example of how to add structured data for FAQs via the HTML API in plugin of functions.php.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;">\n<p><strong> <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/" rel="noreferrer noopener" target="_blank">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/">2020</a> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/">2021</a></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/">2022</a></strong></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023">2023</a></strong> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/"><strong>2024</strong></a></p>\n</section>\n\n\n<p>In his livestream <a href="https://www.youtube.com/watch?v=gs2ZurEpdmg"><strong>Using every Interactivity API feature in one site: Part 2</strong></a>, <strong>Ryan Welcher</strong> continues his series on the Interactivity API and his attempt to build something that uses every directive and feature it offers. <a href="https://www.youtube.com/watch?v=YmOrpp8ygbA">Part 1 is also available on YouTube</a>.</p>\n\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;">\n<p><strong><a href="https://gutenbergtimes.com/need-a-zip-from-master/">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href="https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href="mailto:pauli@gutenbergtimes.com">Email me </a>with your experience</p>\n\n\n\n<p><img alt="GitHub all releases" src="https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge" /></p>\n</section>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p class="has-text-align-center has-small-font-size"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href="mailto:pauli@gutenbergtimes.com">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p class="has-text-align-center has-small-font-size">For questions to be answered on the <a href="http://gutenbergtimes.com/podcast">Gutenberg Changelog</a>, <br />send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<p>Featured Image: AI generated. </p>\n\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n\n\n\n<p class="has-text-align-left"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action="https://gutenbergtimes.com/feed/" autocomplete="on" class="wp-block-newsletterglue-form ngl-form ngl-portrait" method="post"><div class="ngl-form-container"><div class="ngl-form-field" style="margin-bottom: 25px;"><label class="ngl-form-label" for="ngl_email"><br />Type in your Email address to subscribe.</label><div class="ngl-form-input"><input autocomplete="email" class="ngl-form-input-text" id="ngl_email" name="ngl_email" required="required" style="border-radius: 21px;" type="email" /></div></div><button class="ngl-form-button" style="background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;" type="submit">Subscribe</button><p class="ngl-form-text">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class="ngl-message-overlay"><div class="ngl-message-svg-wrap"><svg fill="none" height="24" stroke="#fff" stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"></polyline></svg></div><div class="ngl-message-overlay-text">Thanks for subscribing.</div></div><input id="ngl_list_id" name="ngl_list_id" type="hidden" value="26f81bd8ae" /><input id="ngl_double_optin" name="ngl_double_optin" type="hidden" value="yes" /></form>\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n</section>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 15 Nov 2025 01:20:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"Matt: Kanye’s Back";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150571";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:34:"https://ma.tt/2025/11/kanyes-back/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1471:"<p>In case you missed it, <a href="https://www.youtube.com/watch?v=nJRHEqp-yKQ">Kanye has started apologizing for the event he went through</a>. I didn’t comment on it publicly when it happened because it seemed so strange to me that such a beautiful soul, who had created so much life-changing music with so much love, could express such hate. I’ve had close friends who are bipolar, so I’m familiar with the disease, and seeing Ye’s episode was really heartbreaking, both for the things he was saying and also that it was clearly a medical issue, unfortunately, playing out in the public sphere. (I can’t imagine anything worse.) Every saint has a past and every sinner has a future. </p>\n\n\n\n<p>Who knows what’s next, but hopefully this is the start of a new generative era for Ye, who clearly has the ability to innovate across many fields. <a href="https://www.billboard.com/music/rb-hip-hop/drake-drops-booking-agent-shared-kendrick-lamar-1236113230/">Especially with no rap songs in the Billboard 40 for the first time since 1990</a>! It does feel like we’re living through a New Renaissance right now, there’s an explosion of creativity and access. I’m wishing Ye peace and equanimity with the challenges he’s facing, and I’m definitely going to revisit some of his early work (<em>The College Dropout</em> (ha!) through <em>Cruel Summer</em>) that was so influential on me as I was growing up.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Nov 2025 08:59:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Jake Spurlock: Raptorize It: 15 Years Later, Now With Blocks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://jakespurlock.com/?p=51971";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"https://jakespurlock.com/2025/11/raptorize-it-15-years-later-now-with-blocks/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4407:"<p>Fifteen years ago, I <a href="https://jakespurlock.com/2010/11/raptorize-this/">released a WordPress plugin</a> that answered a question nobody asked: “What if your website needed more velociraptors?” The Raptorize It plugin took the brilliant jQuery work from Zurb and made it dead simple to unleash Jurassic proportions on any WordPress site.</p>\n\n\n\n<p>The motivation back then was simple: you’re deep in a coding session, fueled by questionable snacks, and you realize your project is missing something critical. Not another feature request. Not better documentation. A velociraptor.</p>\n\n\n\n<h2 class="wp-block-heading" id="what-was-old-is-new-again">What Was Old Is New Again</h2>\n\n\n\n<p>Fast forward to 2025, and the web has changed significantly. WordPress has evolved from the simple days of jQuery-powered effects to a modern block editor powered by React. The old Raptorize It plugin still worked, but it was time for an update.</p>\n\n\n\n<p>I recently modernized the entire plugin to work seamlessly with current WordPress versions (5.0+) and PHP 8.0+. But more importantly, I brought it into the Gutenberg era with two new ways to raptorize your content.</p>\n\n\n\n<h2 class="wp-block-heading" id="new-gutenberg-blocks">New Gutenberg Blocks</h2>\n\n\n\n<h3 class="wp-block-heading" id="1-invisible-raptor-block">1. Invisible Raptor Block</h3>\n\n\n\n<p>The Invisible Raptor block lets you add raptor functionality anywhere on your page with a visual editor interface. In the block settings panel, you can:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Enable Konami Code</strong>: Trigger the raptor with the classic ↑ ↑ ↓ ↓ ← → ← → B A sequence</li>\n\n\n\n<li><strong>Enable Timer</strong>: Automatically trigger the raptor after page load</li>\n\n\n\n<li><strong>Adjust Timer Delay</strong>: Control exactly how long visitors have before the inevitable</li>\n</ul>\n\n\n\n<p>The block is invisible on the frontend (hence the name), but shows you which triggers are active right in the editor.</p>\n\n\n\n<h3 class="wp-block-heading" id="2-raptorize-button-variation">2. Raptorize Button Variation</h3>\n\n\n\n<p>For a more direct approach, there’s now a Button block variation that adds a “Raptorize Button” style option to the core WordPress button block. Visitors click the button, raptor appears. Simple. Elegant. Prehistoric.</p>\n\n\n\n<h2 class="wp-block-heading" id="whats-under-the-hood">What’s Under The Hood</h2>\n\n\n\n<p>For the developers curious about what changed:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Utilized better internal WordPress APIs for script enqueuing. </li>\n\n\n\n<li>Updated jQuery from <code>.bind()/.unbind()</code> to <code>.on()/.off()</code></li>\n\n\n\n<li>Added comprehensive PHP CodeSniffer configuration (WordPress-Core, WordPress-Docs, PHPCompatibilityWP)</li>\n\n\n\n<li>Built block development workflow with <code>@wordpress/scripts</code></li>\n\n\n\n<li>Set up automated WordPress.org deployment via GitHub Actions</li>\n\n\n\n<li>Added wp-env configuration for local testing</li>\n</ul>\n\n\n\n<p>The entire codebase now follows modern WordPress coding standards and passes all linting checks.</p>\n\n\n\n<h2 class="wp-block-heading" id="try-it-yourself">Try It Yourself</h2>\n\n\n\n<p>The updated Raptorize It plugin is now available for download at the <a href="https://wordpress.org/plugins/raptorize-it/">WordPress Plugin Directory</a>.</p>\n\n\n\n<p>You can also explore the complete codebase and contribute to future developments on <a href="https://github.com/whyisjake/raptorize-it">GitHub</a>.</p>\n\n\n\n<h2 class="wp-block-heading" id="why-though">Why Though?</h2>\n\n\n\n<p>Look, I could tell you it’s about maintaining legacy code or demonstrating modern WordPress development practices. And sure, those are valid reasons.</p>\n\n\n\n<p>But really, it’s 2025 and the world still needs more velociraptors on websites. Some traditions are worth preserving.</p>\n\n\n\n<p>Now if you’ll excuse me, I have a Konami code to input.</p>\n\n\n\n\n\n<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex">\n<div class="wp-block-button has-custom-width wp-block-button__width-75 is-style-raptorize is-style-fill raptorize-button"><a class="wp-block-button__link has-large-font-size has-custom-font-size wp-element-button">Don’t push this button.</a></div>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2025 23:16:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jake Spurlock";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:69:"Akismet: Version 5.6 of the Akismet WordPress plugin is available now";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://akismet.com/?p=284654";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://akismet.com/blog/akismet-5-6/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:628:"<p>Version 5.6 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available. In this release, we’ve improved performance, updated the setup process to more clearly explain errors when they happen, and cleaned up and standardized our UI across all of the Akismet wp‑admin screens.</p>\n\n\n<p></p>\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href="http://wordpress.org/plugins/akismet/">the WordPress plugins directory</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2025 16:55:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Christopher Finke";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: #193 – Roger Williams on How We Might Reimagine Sponsoring WordPress Contributions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wptavern.com/?post_type=podcast&p=200658";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:108:"https://wptavern.com/podcast/193-roger-williams-on-how-we-might-reimagine-sponsoring-wordpress-contributions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:57604:"<details>Transcription<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how we might reimagine sponsoring WordPress contributions.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wp tavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Roger Williams. Roger leads community and partner engagement at Kinsta, a company specializing in offering managed hosting for WordPress. His role involves bridging the gap between Kinsta and the wider WordPress community, working closely with agency partners, technology collaborators, and open source initiatives.</p>\n\n\n\n<p>Throughout his career, Roger has been deeply involved in community efforts and has recently played a key part in Kinsta’s implementation of a sponsored contributions program, helping to funnel time and resources back into WordPress and other open source projects.</p>\n\n\n\n<p>Many longstanding members of the WordPress community have contributed out of passion and a spirit of philanthropy, but as the project has grown to power over 40% of the web, the need for sustainable funding and sponsorship has become more pronounced.</p>\n\n\n\n<p>Roger joins us today to explore this shift. He shares insights from his WordCamp US presentation titled Figuring Out Sponsored Contribution. Discussing how companies can start funding contributors, why that matters, and how to balance the business need for a return on investment with the grassroots spirit of open source.</p>\n\n\n\n<p>We begin with Roger’s background, his work at Kinsta, and how he became involved in WordPress community sponsorship.</p>\n\n\n\n<p>The conversation then gets into the ever evolving dynamics of sponsored contributions. How businesses can approach funding contributors. Ways to surface and support valuable work, and strategies for aligning company goals with broader project needs.</p>\n\n\n\n<p>Roger breaks down the practical arguments companies can use to get internal buy-in, and the importance of clear processes for both organizations looking to sponsor, and individuals seeking support.</p>\n\n\n\n<p>Towards the end, Roger reflects on the challenges and opportunities of connecting those both from the philanthropic and commercial sides of WordPress, and he shares advice for anyone hoping to get their organization involved in similar programs.</p>\n\n\n\n<p>If you’re interested in how WordPress sponsorships work, how business and community might collaborate, or you’re seeking practical advice as a contributor or company, this episode is for you.</p>\n\n\n\n<p>If you’d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Roger Williams.</p>\n\n\n\n<p>I am joined on the podcast by Roger Williams. Hello, Roger.</p>\n\n\n\n<p>[00:03:46] <strong>Roger Williams:</strong> Hey Nathan, how are you?</p>\n\n\n\n<p>[00:03:47] <strong>Nathan Wrigley:</strong> I’m very good. We could pretend that we’re recording this at WordCamp US because that was the plan, but it never happened for one reason or another. So we took it offline. And several weeks ago, WordCamp US finished, but the intention was very much to talk about what you were presenting at WordCamp US. So we’ll get into that in a moment.</p>\n\n\n\n<p>Before we do that though, Roger, would you mind just telling us a little bit about who you are, who you work for, what your role involves, all to do with WordPress, I guess.</p>\n\n\n\n<p>[00:04:14] <strong>Roger Williams:</strong> Yeah, no, absolutely. So my name’s Roger Williams. I work at Kinsta, managed hosting provider for WordPress. Currently my position is partnership and community manager for North America. Very long title. What does that mean? My job is to interface with the public, with the WordPress community, with our agency partners and various technology partners, and just make sure that we’re all on the same page, and that whatever’s going on outside of Kinsta is getting communicated inside of Kinsta, and whatever’s happening inside of Kinsta is getting communicated outside. So I’m basically boiling the ocean. So a very easy thing. No problem at all.</p>\n\n\n\n<p>Truth be said, it’s one of the, this is like the highlight of my career, I have to say. I get to travel, I get to meet a lot of neat and interesting people, I get to make amazing friends, and I get to talk about technology, the web, WordPress and Kinsta hosting, which are all things that I’m very passionate about and enjoy talking about this ad nauseam. You can ask my wife, that I am probably too much, need to turn it off a little bit.</p>\n\n\n\n<p>But specifically talking about community and WordPress, gosh, it was January of this year, 2025, that we implemented our sponsored contributions program, and I played a role in that. I played a role in getting the conversation happening around that inside of Kinsta. And then once we got budget approval, actually figuring out, hey, who do we want to sponsor? What projects outside of WordPress? Because we also sponsor various open source projects that affect us directly and indirectly.</p>\n\n\n\n<p>And so that has been a whole new aspect of my career that has really opened up new doors and opportunities and discussions and friendships that I’m still feeling like a bit of an interlocutor. I’m an outsider trying to understand how to best do this, and play a part in helping the projects that we all depend on to do all of our work.</p>\n\n\n\n<p>[00:06:17] <strong>Nathan Wrigley:</strong> Nice. Thank you. Yeah, there’s a lot in there to unpack, isn’t there? It sounds like a full and varied role, but also you kind of sound a little bit like you’re figuring this out over the course of 2025 and into 2026 and who you are sponsoring and what have you. And that was very much the tenor of the talk.</p>\n\n\n\n<p>So the title was very simple. The presentation that you gave was simply called figuring out sponsored contribution. But I’ll just read into the record the blurb, not all of it, but much of it because it will give everybody who’s listening an idea of where you were going with that. So it says, open source software runs on passion, but passion doesn’t pay the bills. WordPress powers over 40% of the web, yet many people maintaining it aren’t funded. That’s starting to change and your company can be part of it. In this talk, we’ll explore how sponsored contribution works, why it matters, and how companies big and small can participate. We’ll walk through my experience, AKA your experience, working with companies to sponsor contributors from promoting the idea internally, identifying key areas of the WordPress project to support, finding and interviewing contributors, and building an internal framework for long-term sponsorship. And there’s a little bit more, but that basically sums it up.</p>\n\n\n\n<p>So basically, I guess my first question is, what exactly are you trying to do here? Are you kind of regarding this as a sort of philanthropic thing? What I’m really kind of asking is, do you kind of expect things in return? So if Kinsta, for example, sponsor somebody, do you have like a tick list of things that we need to see that you’ve done? Or is it more, you are a trusted person, we’ve seen you interacting in the WordPress space for many years, here’s a bunch of cash, go off and just do whatever you like?</p>\n\n\n\n<p>[00:07:53] <strong>Roger Williams:</strong> Yeah, excellent question. And thanks for reading that blurb. I don’t think I’ve read that blurb in quite a few months and it sounds really good.</p>\n\n\n\n<p>[00:07:59] <strong>Nathan Wrigley:</strong> It was a great talk.</p>\n\n\n\n<p>[00:08:00] <strong>Roger Williams:</strong> Somebody really put something together here. Really interesting question and I think this kind of gets to the core of what I was trying to talk about in this talk, in the exploration that I’m trying to figure out in my own head, figure out inside of Kinsta, and possibly figure out in the larger community.</p>\n\n\n\n<p>There’s a lot of humility involved in this Nathan, I hope you can appreciate. I feel a lot of the times very, the imposter syndrome, right? Wow, I’m coming into a project that’s over 22 years old. Many, many thousands of people have been involved. Many, many companies have been involved in this. Here’s this new guy, you know, I mean I’ve been around for a little while, but relatively new guy on the scene just coming in trying to tell people how all this is done. And I really hope that it doesn’t come across that way. I’m really trying to explore this topic and understand it better for a few reasons.</p>\n\n\n\n<p>The first one is the most immediate. How can I get Kinsta involved in contributing and sponsoring WordPress and other open source projects? And so there’s a combination of things happening there, right? And you brought it up in terms of, are there tangible things that we’re looking for here? Or is this simply just philanthropic, hey, we’re giving money away and everything will work out?</p>\n\n\n\n<p>And I think that there’s a spectrum. And we’re playing on the spectrum with it. Traditionally, and this is something that I talk about a lot in the talk is, traditionally in open source the argument has been that I’ve seen, hey, you’re using this software, you should give back to the software and to the project.</p>\n\n\n\n<p>But then you have on the other side the business that is very much, hey, we need to generate revenue from our activities so that we can remain a business.</p>\n\n\n\n<p>And so they’re a little bit at odds in some ways, right? But it doesn’t have to be that way. And I think that’s what I’m exploring in this talk, and I’m exploring in this conversation, and as many conversations as I can have with people is, how do we play on that spectrum of finding a happy medium where for a company, a lot of times you go to the executives and you’re like, hey, we need to be giving back to this thing that we get for free? And you get a very perplexed look. And so I think we need to adjust that conversation.</p>\n\n\n\n<p>I think that the people that are inside of the project, it’s very obvious. Hey, we put a ton of time and effort into making this happen. Whether you give back in terms of time and actually help us work on the project, or give us money so we can sponsor people and pay for hosting costs and different things involved in it, to make the project happen. I think it’s very obvious for people inside of the project how that works.</p>\n\n\n\n<p>It’s less obvious, and I kind of see there’s three groups in all, right? You have the people inside of the project, very obvious. There’s very little argument needs to be made.</p>\n\n\n\n<p>You have the second group, which is somewhere like, a Kinsta will fall into, or someone like myself, who I’ve used open source software for many years, but I don’t necessarily see exactly how to contribute back, or the immediate benefits, or the need, right? Hey, this thing’s already here. I can go to the website, click download, and I’ve got it. There’s that group that kind of see it but they need a little nudging.</p>\n\n\n\n<p>And then there’s the general public or people that just don’t really interface with open source software directly and just have no idea. They’re just like, whoa, what is going on over there? People are just working on stuff for free and giving it away for free. That’s crazy. And so there’s another conversation that needs to happen there.</p>\n\n\n\n<p>I think with this specific talk, the group I’m trying to get to is that second group. The people that are just right there, it’s just in a little bit of nudging of like, hey, you’re really close to understanding the benefits of sponsoring and contributing back to the project. What are we missing in the conversation to really get them to understand it? So the answer I’m proposing is we need to talk more about return on investment and ROI, and how do we frame that?</p>\n\n\n\n<p>So really long-winded answer here, but I think that there’s a mixture of what are the things we’re trying to achieve by giving back? How can we bring that back in a business sense to show executives, hey, look, the money that we’re putting out here is benefiting us in certain ways?</p>\n\n\n\n<p>But then also being like, hey, there’s also just kind of this nebulous aspect to it of, if you help contribute to it, it will give you some benefit. So how do we balance and how do we find the spectrum here to land on? I hope that that made some sort of sense.</p>\n\n\n\n<p>[00:12:36] <strong>Nathan Wrigley:</strong> Yeah, it does. And it’s interesting because where you got to about a third of the way through the answer, I think you said the word tension or conflict or something like that. But I think that’s a really interesting part, because if we were to rewind the clock to, let’s say 19 years ago when WordPress was still relatively new. I wasn’t around in the WordPress space, but I was involved in other open source projects at the same time. And philanthropy was the word.</p>\n\n\n\n<p>There were just people donating loads of time because it was more or less this hobby thing. And then in some cases the hobby thing collapsed and nobody ever heard of it again. And in the case of some software projects, WordPress most notably, it took off. It just absolutely skyrocketed and became the underpinning of, as you say in the presentation notes that you made, kind of 40% of the web. It became this critical piece of the puzzle.</p>\n\n\n\n<p>And so during the last 18, 20, 22 years, whatever it may be, the project has evolved. It’s become critical. Like it or dislike it, companies both big and small are now relying upon it. They require it as part of their business, Kinsta being one of those companies. And so this tension exists. How do the companies do their bit and how do the individuals do their bit?</p>\n\n\n\n<p>And the tension that I feel is, on the one hand, the people who’ve got that heritage of the more philanthropic side sort of saying, can’t we just go back to how it was? Can we never talk about finance? Can we not think about money at all?</p>\n\n\n\n<p>And then on the other hand, you’ve got places like where you work, who are, with the best will in the world, it’s about making some revenue, and making money, and paying the bills and all of that. You’ve got to figure out, how the heck do you make contributions? How do you justify that to your bosses? How do they communicate what they’ve done effectively?</p>\n\n\n\n<p>And presumably part of your talk as well is about finding people that you would like to just give some money to as a helping hand to say, okay, off you go. You’re not a part of the Kinsta organisation, but we would like to help you. And in return, presumably there’s a bit of mutual back rubbing. We’ll pat your back, you pat ours, and so on and so forth. So hopefully I’ve parsed that about right?</p>\n\n\n\n<p>[00:14:39] <strong>Roger Williams:</strong> Yeah, no, I think you’re laying it out very much as I’m going through in the talk is, we need to talk business. And I know that for a lot of people inside of open source, this can be cringey and not pleasant and not what we want to do. And my argument is we have to get over that phase. We have to learn to start talking business and thinking business, thinking about return on investment.</p>\n\n\n\n<p>And so to me it’s becoming practical, right? We have this optimistic idea of like, well, people will just come to their senses and realise that if they sponsor and contribute to the project, it’s going to help them. And we need to be much more strategic and more practical about it. And I break it down into three reasons to start kind of looking at when you’re talking to executives, you’re talking to businesses. And so there’s strategic, operational and second order benefits.</p>\n\n\n\n<p>So when I’m talking about strategic benefits, I mean this is where it’s just obvious, right? For a hosting company that does WordPress, it just makes sense. Like, if WordPress isn’t working well, then we’re going to have trouble with our product. So strategically, it makes sense if WordPress works well, if it’s performing, if it’s secure, this is going to lower our cost as a hosting company. So those are arguments to be putting forward there.</p>\n\n\n\n<p>From an operational perspective, you can start talking about technical debt, right? And this is where the CTO’s eyes should light up, because technical debt is a real problem for any company that builds software. As you’re building software, you now have to maintain that software. Well, if you’re able to offload part of that software into the open source project, it now becomes something that the open source project maintains. It’s the technical debt of the project.</p>\n\n\n\n<p>That now creates a vicious cycle, or not even vicious, but just a cycle of, you now need to contribute to the project to help maintain that technical debt. But you’re now, as an organisation, offloading that to a larger organisation and having more people being able to help maintain that software. So I think from an operational perspective, those are arguments that you can hit people with.</p>\n\n\n\n<p>And then finally, the second order benefits, and this is really where it kind of encompasses the arguments that have been traditionally the philanthropic argument, the just maker taker argument and stuff like that. With second order benefits, you start seeing these additional benefits that maybe you can’t exactly measure.</p>\n\n\n\n<p>This is where networking is happening. People are meeting and talking to each other. Maybe your developers are talking to their developers, or in the case of sponsoring contributors, those contributors can come into your organisation and help the organisation maybe understand how to use WordPress better and these different benefits.</p>\n\n\n\n<p>And so breaking it down into these practical arguments, these practical reasons for contributing can really help people who are not necessarily as well versed with open source or don’t directly see the benefits, see that a little bit better.</p>\n\n\n\n<p>And then getting into what you’re also talking about, finding contributors who, maybe they align with your values, making sure that they’re working on the stuff that you need them to be working on. The parts of the project that could use attention as far as your organisation is seeing.</p>\n\n\n\n<p>And then also, you know, one of the big things I look for is contributors who are mentors and are helping other contributors get into the project and help to grow the project’s contributions overall.</p>\n\n\n\n<p>There’s direct, tangible things. Hey, there’s this ticket, could you go work on this ticket? I’ll be honest, I’m not that in depth yet. I’ve had contributors be like, hey, usually organisations are that pointed. And I’m like, okay, well there’s a goal for me to achieve at some point.</p>\n\n\n\n<p>But for me it’s more like, hey, are you doing good work? What are other people saying about you in the project? And then, are you mentoring people and helping other people do their first bug squash, and do their first push and commit and things like that? And I’m butchering the language of course here but, you know, I hope that that kind of helps answer some of those questions.</p>\n\n\n\n<p>[00:18:36] <strong>Nathan Wrigley:</strong> Yeah, it’s interesting because I fear that there’s a possibility that the community kind of bifurcates along these lines at the moment. So you get the people, and I was using the word philanthropic, so the people that have been contributing their time for gratis, just because they saw that as a useful thing to do for humanity, let’s put it that way.</p>\n\n\n\n<p>So there’s that on the one hand. And then on the other hand, you’ve got people such as yourself who are talking about the necessary things in order for your job and your institution to function, the money. And I suppose I’m kind of worried that we will have these two sides that kind of can’t figure out a way to communicate with each other, that can’t see across the chasm that has been created. And so figuring out ways to make those work to sort of have a happy balance so that the two sides can communicate, that they can be back in touch with each other.</p>\n\n\n\n<p>So that’s kind of a concern that I have, this sort of two tier system. The fear more broadly is that, if the money side of things becomes more prevalent, and people find that intolerable, that ultimately will push people away who have been philanthropic and amazing in the use of their time and pushing the project forward. They’ll see this as something that they can’t cope with in the future, and they’ll wish to step away, not contribute to it. That would be a shame.</p>\n\n\n\n<p>[00:19:52] <strong>Roger Williams:</strong> So I can absolutely empathise and understand the argument that you’re putting forth there. I think the way I would counter that is to say, hey, currently if we’re only going to talk in a philanthropic sense, are we just going to exclude everybody from what you’re talking about, the second tier, right? The more money focused. So we’re just not even having a conversation in that case.</p>\n\n\n\n<p>[00:20:15] <strong>Nathan Wrigley:</strong> Right. That’s the concern, yeah.</p>\n\n\n\n<p>[00:20:17] <strong>Roger Williams:</strong> So what I’m trying to argue is, hey, by bringing in more people into the project and maybe starting to talk in these practical ROI business terms, were now at least having a conversation that before wasn’t even happening. Because just to kind of back up a second, the way I’m looking at it is, if the only argument is, hey, this is philanthropic, you’re doing it for the good of the project, kumbaya, then we’re just going to exclude a lot of the business community who’s going to go, well, yeah, I volunteer time on the weekend at my church, or do different things, but I need to do business during the week so I can buy groceries and pay the rent.</p>\n\n\n\n<p>And so I think what I’m trying to suggest is, hey, if we expand the conversation beyond just philanthropic, beyond just the second order benefits, and we talk about operational and strategic benefits in addition, we’re now adding more people to the conversation that weren’t in the conversation before.</p>\n\n\n\n<p>And eventually we’re bringing them into the second order conversation, but we have to start by bringing them in with the strategic and the operational, because that’s where their mindset is in the nine to five. And so to me, I think this is the opportunity to actually expand the pie and expand the amount of people in the project and talking about the project.</p>\n\n\n\n<p>The concern I see that is a fair argument and concern is, are we going to turn open source projects into just commercial enterprises? That is definitely a concern. I don’t see that happening because you still have the core people in the project. They’re doing it because they believe in what the project is and they have passion for it. And if they are able to expand and have these conversations, these larger conversations, or additional conversations, about strategic and operational benefits, we’re going to bring more people in and hopefully help to influence those people to see the second order benefits, and hopefully eventually it’s all just philanthropic, right?</p>\n\n\n\n<p>But I think right now, the argument that has been put forth by different people in open source and in the WordPress community, is that we don’t have enough people contributing. We don’t have enough sponsorship money coming in, and so we need to figure out how to bridge that gap. And my suggestion is the way to do that is to expand the conversation beyond just the philanthropic, beyond just the second order, and talking about strategic and operational in addition to those.</p>\n\n\n\n<p>[00:22:40] <strong>Nathan Wrigley:</strong> I have so many thoughts about this. So the first thing that comes into my head is trying to bridge a gap between the people out there at the moment who have been contributing. But you go around on Twitter, X, I guess, and you see people, don’t you? You see it all the time. They even sometimes change their Twitter handle to, you know, seeking sponsorship or something like that.</p>\n\n\n\n<p>But periodically you’ll see somebody who you know has been in the WordPress space for many years and, I don’t know, maybe they have been contributing in some way, shape, or form, but it’s pretty clear that they would like to be sponsored for this particular rabbit hole that they’ve gone down. And so building a bridge to them is something I think really useful about what you’re saying.</p>\n\n\n\n<p>Because maybe there is no way of these two sides talking to each other. Maybe there is no kind of like a la carte menu, if you like. If you are one of these philanthropic contributors, and you’ve never sought sponsorship before, but you’d like the idea of, well, wouldn’t it be nice if, for these two days a week that I typically contribute my time, wouldn’t it be nice to get some finance? I’ll do the exact same thing, but I’ll actually receive some money for that.</p>\n\n\n\n<p>But I don’t have the time to go out to a hundred different companies with my, I’m going to use the word begging bowl. That is probably the wrong term, but you get the point. To these a hundred different companies saying, look, I’ve been doing this for ages. Can you help me out?</p>\n\n\n\n<p>That kind of feels, there’s something quite icky about that, isn’t there? I think we can all identify that going out and sort of saying to companies repeatedly, please can I have some money? And then getting the inevitable 99% pushback. No, we haven’t got any money for you.</p>\n\n\n\n<p>But I think what you are saying is you are going to build a system where that kind of stuff will be more obvious. Where you’ll say, these are the kind of things that we’re looking for. Here’s the application form if you want to sponsor. This is the kind of process that we’re going to go through. These are the interview questions that we’re typically going to answer. This is the pot of money that we’ve got available. This is how many people we want, and so on and so forth.</p>\n\n\n\n<p>So it’s kind of bridging the gap, so that the people who have been contributing, who are maybe nervous or don’t see a way forward, can suddenly step into something more obvious, more a la carte, more straightforward and easy to kind of cherry pick.</p>\n\n\n\n<p>[00:24:46] <strong>Roger Williams:</strong> Yeah. I think that, you know, this is getting to the heart of it, right? How do you individually sponsor people? How do individuals find sponsorship? And how do we make this all work? And backing up just for a second , there’s two ways to look at contributing to open source projects.</p>\n\n\n\n<p>We’re talking a lot about sponsoring individual contributors, which I would argue is the best way for an organisation to get started, because it’s the easiest way in some sense, right? There’s an established person who’s working in the project. You are giving them cash to do that work.</p>\n\n\n\n<p>The other way to contribute to the project is to actually spend time working on the project, right? So maybe you’ve got engineers inside of the company and you’re like, okay, 10% of your time is, or 5% of your time you’re going to actually work on this project. That’s a much bigger ask, right? Because usually when you hire an employee, you have a very specific set of tasks that you need to work on them for the company.</p>\n\n\n\n<p>And so asking the manager to figure out, hey, how can this person give 5% of their time to something that’s outside of the company? That’s a bigger ask. So I think, for companies and organizations that are starting to dip their toe into contributing to open source, sponsored contributions is a great place to start.</p>\n\n\n\n<p>So that was a long way to get around to the question that you’re posing here, is how do you actually do that? There’s a chicken and the egg kind of situation that you’re bringing up, right? At what point does an individual contributor know that, hey, Kinsta is a company to reach out to, and ask for sponsored contribution. And then on the flip side, how does Kinsta know who to reach out to to sponsor?</p>\n\n\n\n<p>And so my suggestion is to create a couple of different systems. So first, from the organisational perspective, really understanding, what are the priorities for the organisation? What would benefit them the most by sponsoring individual contributors?</p>\n\n\n\n<p>My argument is it’s a pretty wide swath. A lot of people get focused on core contributors and, actually working on tickets and things like that. I think it’s a much broader effect. I think sponsoring people that are on the Polyglots team, Kinsta, over half of our customers don’t speak English. So having WordPress in non-English versions is huge for us. So sponsoring the Polyglots team.</p>\n\n\n\n<p>The documentation team is huge, right? People need to be able to use WordPress . So are they going to contact Kinsta support for how to use WordPress, or can they just go to the WordPress site and look at documentation?</p>\n\n\n\n<p>So as an organization, you can get really strategic on this, but my argument would be, don’t overthink it at the beginning. Just get started. And I think that’s how I kind of end my talk is, my biggest piece of advice is don’t wait. Just get started. Set aside some budget that you’re comfortable with, that your executives are comfortable with, and then go and find some contributors.</p>\n\n\n\n<p>And then have kind of a process, right? Have an intake form. You mentioned having an intake form. Have an intake form. Ask them questions about, what do they currently work on? What have they worked on in the past? What are their hopes and goals and aspirations on the project?</p>\n\n\n\n<p>And then, you know, some very practical questions. Hey, would you be open to doing a blog post about your work and how Kinsta has helped with this? Very low level asks, right? We’re not trying to ask people to get a tattoo of the logo on their forehead or something insane. It’s very low effort, and my argument to companies is be very cautious. Step lightly into the marketing aspect of all of this. That should not be your primary focus.</p>\n\n\n\n<p>The primary focus is contributing to the open source project, not getting all this marketing benefit out of it. And so, you know, make sure to frame it that way.</p>\n\n\n\n<p>From the individual contributors thing, one thing I do point out is, up until recently, I’ve never actually been formally approached by somebody asking for sponsorship to contribute. You kind of talked about, hey, if someone needed to spend a time reaching out to a hundred different companies, you don’t need to go that crazy. Just reach out to like the major hosting companies to start.</p>\n\n\n\n<p>But my argument is you need to do more than just say, hey, I work on WordPress, you need to sponsor me. You need to put together a little bit more of a pitch of, hey, I work on X, it accomplishes Y. I see this benefiting your organisation in these specific ways. And if you’re approaching it that way, that’s going to catch someone’s attention much better.</p>\n\n\n\n<p>You know, and then just ask also just simple questions. Hey, do you have a formal sponsorship contribution project for WordPress? And if they say no, maybe, hey, would you like me to help you set that up? If they say yes, then it’s, hey, what’s the process for getting involved in that?</p>\n\n\n\n<p>These are just very simple questions. It’s just a conversation, right? I say this, I’ve been in sales for decades now. It’s second nature to me. I understand that for a lot of people, this isn’t second nature for them. And that’s also what I’m trying to help with in this conversation is, it’s not just the organisations I’m trying to educate, but it’s also the contributors and the people that are in the project. Helping them to understand how to speak business a little bit more, so that they can get the businesses to really understand the benefits of this.</p>\n\n\n\n<p>[00:29:58] <strong>Nathan Wrigley:</strong> There was a few things that you said a few moments ago where the implication was basically just get started. So put aside some cash, decide that you’re going to do it, so this is from the business side, and then just begin and see what happens. I don’t suppose you’re going to be able to simulate the perfect system first time around. It’ll be an iterative process, but just commit to it.</p>\n\n\n\n<p>But the ROI thing was also kind of interesting because you know, if you are senior management in Kinsta or whichever hosting company you want to imagine, there’s got to be I suppose some aspect of that in the back of your mind. Okay, we’re going to give away, I don’t know, a hundred thousand dollars this year, but we’re not going to ask anybody at all, at any point to sort of mention our company name. That’s probably unrealistic, but I like what you said there about the gentle approach to it, the write a blog post about it.</p>\n\n\n\n<p>But there’s something to be explored there because there’s got to be a way of surfacing good work. So it doesn’t have to necessarily be a big clarion call. Look, I did this because Kinsta paid for it. More tangentially, I did this great work and I did this, and WordPress benefited as a result of this, and I would just like to thank Kinsta for making that possible.</p>\n\n\n\n<p>I guess we’ve just got to figure out what that piece looks like because, you know, you can’t give away money for free. There does need to be some ROI, but we have to figure out how gentle that approach is, and how gung ho it can be or not. That’s going to be interesting to figure out.</p>\n\n\n\n<p>[00:31:22] <strong>Roger Williams:</strong> Just to kind of elaborate on that for a second. So the way I would say to companies to approach looking at this is, this is branding, right? And so when you’re doing brand marketing, it’s very nebulous, right? You’re kind of putting stuff out there and there’s a little bit of goodwill to it, I guess, you know, the philanthropy part plays into it a little bit. This definitely, I would say, falls under your branding budget. And so you should treat it as such.</p>\n\n\n\n<p>I think that there’s a few different ways that the marketing, and I’m using air quotes around marketing here, because I understand that for people in open source this can be a little bit of kryptonite, a little bit repellent to talk about it this way. So I’m trying to be cautious or gentle here.</p>\n\n\n\n<p>But I think the marketing benefits are, there’s a ton of indirect benefits, right? So if I’m sponsoring a contributor, and they’re working on the project, it means they’re interacting with other contributors of the project. They’re going to mention, oh, hey, by the way, Kinsta is sponsoring me, in conversation.</p>\n\n\n\n<p>And now you’ve got that one-on-one marketing, as it were, happening where that’s getting put into the project and that gets noticed. And I think that’s my big urge to companies who really want to step on the pedal of ROI. Like, hey, we need to really maximise the ROI here. Is it’s like, hey, the community notices as soon as you do something, good, bad, or indifferent. But as soon as you start sponsoring people, it gets noticed inside of the community right away, whether you immediately see it or not.</p>\n\n\n\n<p>So allow that to happen, for sure. I think from like the blog posts and things like that, there’s two ways I approach it. I love it if a sponsored contributor writes a blog post on their blog and mentions Kinsta. That’s amazing. I’m not expecting that. So instead what I’ll do is I’ll invite them onto the Kinsta Talks podcast and, hey, let’s spend 20 minutes and just talk about what you’re doing on the project.</p>\n\n\n\n<p>I mentioned Kinsta at the beginning of it, in the fact that that’s where I work. Other than that, I don’t talk about Kinsta at all. It’s all about this individual and what they’re doing on the project, what they’re excited about, how they would suggest people get involved in the project. And so using that as a promotion, and again, the indirect branding benefits. My fingers are crossed, I’m sure my CMO’s watching this and going, either he is loving it or he is gritting his teeth. I get the sense everybody’s very happy. Hey Matt, how are you?</p>\n\n\n\n<p>The way I am approaching this is very much as an outsider and I’m trying to be very respectful of the fact that this community’s been around for a very long time. I am sure this is not the first time that these conversations have happened. I’m not the first person to bring these things up. I just see it as, I’m here as a unique person in this point in time and I see a need and I’m, we’ve gotten our organisation to help, start helping. And what I’m trying to promote is getting other organisations to also realise this, and also start promoting and sponsoring and contributing to the project.</p>\n\n\n\n<p>[00:34:13] <strong>Nathan Wrigley:</strong> I think one of the things that will be really interesting is if, let’s say that you become the fulcrum for all of this, and so Roger Williams is known at Kinsta. He’s the person to go and speak to. Having that clarity is going to be really beneficial. So you don’t have to go through those email hoops of, okay, you just use the contact form on the website and then get put through nine different people who all say, actually it’s not me. Knowing who you’ve got to speak to, and having that clear process, that contact form, whatever that may be, that intake form that we talked about earlier, that’s really interesting.</p>\n\n\n\n<p>I’m just going to pivot it slightly, and I’m wondering what the kind of contributions that might fall into scope for you at Kinsta. So obviously the software itself, the core project, WordPress Core would I’m sure be in view.</p>\n\n\n\n<p>But what about other things like, oh, I don’t know, people who write documentation, you mentioned Polyglots? There’s obviously people who do event organising. There are people who do content creation, podcasts, YouTube channels, those kind of things. Do you have any constraints around the kind of contribution that you’d be interested in looking at, or will you listen to anybody?</p>\n\n\n\n<p>[00:35:16] <strong>Roger Williams:</strong> Excellent question. And before I dive into that, I want to make sure that I’m not the only person taking credit for this at Kinsta. I have two amazing colleagues on the front lines with me. Marcel Bootsman, as you’re very familiar with, I think he’s been on your show before, he handles for Europe. And then Alex Michaelson, who is in APAC region. These are both amazing individuals who, we all three of us are on the front line, talking with contributors, sponsoring them, figuring all of this stuff out. So I definitely don’t want to take all of the credit here and make it seem that way.</p>\n\n\n\n<p>As far as figuring out who to sponsor and who to contribute, this is the big question. The amazing thing is that this point in time, my bosses, our bosses at Kinsta have given us amazing leeway to really choose who we want to be sponsoring, and who we want to be working with.</p>\n\n\n\n<p>And so there’s a bit of objective focus for who we’re sponsoring. Core contributors obviously, like they’re directly impacting the project by actually changing the code and adding features and fixing bugs. So that’s obviously very important.</p>\n\n\n\n<p>But just as important is these other groups that are making sure that when a new person wants to use WordPress, there’s documentation that explains how to use the WordPress. When they want to go to a WordCamp and meet somebody, I mean Aaron Jorbin has a great story about meeting someone at one of the first contributor days that he went to. And they then became a core contributor within a short amount of time. And so that contributor day didn’t just happen, right? Like, people had to make that event happen, and organise it and have coffee and treats and lights and all of the things that go into that.</p>\n\n\n\n<p>So I think that there’s a lot of levels here. Whether it’s directly sponsoring a contributor inside of the open source project. It’s sponsoring WordCamps, it’s sponsoring amazing podcasts that help to spread the word and market WordPress.</p>\n\n\n\n<p>There’s people that have brought up that WordPress has kind of a marketing issue because it is this open source project that has just benefited from just a ton of people realising, wow, this is amazing software to build websites with. And they just started doing that, and 40% of the internet runs on WordPress.</p>\n\n\n\n<p>That’s happened very, very organically. And I think though that we’re now at an inflection of the internet and the web where we maybe need to start becoming a little bit more intentional about the marketing and the promotion of WordPress.</p>\n\n\n\n<p>[00:37:44] <strong>Nathan Wrigley:</strong> What I’m gathering from this is that, certainly from Kinsta’s point of view, you just want to make this whole bi-directional thing just clearer. Kinsta’s got some intention to sponsor, and we know who the people are, we know the kind of things that they want to sponsor. Maybe there’s going to be some sort of landing page for that or some intake form. And so hopefully people who have it in mind that they wish to be sponsored, they’ll be clearer on what kind of things are in scope, what kind of things are out of scope. How many people they need to jump through the hoops to get that sponsorship sorted out. So that kind of thing is really interesting.</p>\n\n\n\n<p>What do you think about the idea of, so we haven’t discussed this, I’m just going to throw this in there. Do you think this is a company by company thing? So in other words, is Kinsta always going to be siloed in its approach to sponsoring? Or is there any kind of, I don’t know how this would work, but some kind of more overarching approach that may be required? So let’s say for example that, I don’t know, Kinsta do, they sponsor person X, person Y, person Z, as we say in the UK, but obviously that leaves all these other myriad people without sponsorship. Is there a way that you could communicate to other organisations?</p>\n\n\n\n<p>Look, this person, they came to us, it was very close, but we didn’t manage to get them on the sponsorship roster this year. But we feel that they were really credible. Here’s somebody else that you can go and talk to. Do you know what I mean? Something just a little bit, a bigger umbrella organisation above Kinsta, maybe. Organisation, substitute that word for any kind of structure or governance as you like.</p>\n\n\n\n<p>[00:39:12] <strong>Roger Williams:</strong> Yeah, there is a lot of stuff already around this. Courtney Robertson has WPCC.</p>\n\n\n\n<p>[00:39:18] <strong>Nathan Wrigley:</strong> WP Community Collective.</p>\n\n\n\n<p>[00:39:20] <strong>Roger Williams:</strong> Thank you. And so the idea with that group is kind of to create an organisation that handles the mechanism aspect of distributing funds and finding people to sponsor and contribute. I could see a consortium of hosting companies coming together and somehow working on this, but that adds additional complexities, right? You have now more organisations, you have more bodies deciding things and making decisions.</p>\n\n\n\n<p>And again, going back to what I propose at the very end of the project is, don’t wait, just get started. My worry about having consortiums and larger organisations is it’s going to slow the process down, it’s going to complicate the process.</p>\n\n\n\n<p>That’s mostly just because I have a big phobia of organisations and meetings. This is a personal kind of thing rather than, you know, I’m sure there’s ways to figure this out more. I have a job, right? I have to balance all of these things between working on what I need to actually work on inside of the company. Working on sponsoring contributors and focusing on the open source. So there’s a lot of balancing that goes on. I am open to having these discussions with people and organisations and seeing what can come of it.</p>\n\n\n\n<p>Again, going back to feeling like an outsider and knowing that there’s already a ton of people and a ton of organisations involved in doing all of this work. I’ve reached out to many of them. They’ve given me great advice. They’ve really helped me get our program organised the way it is. They help me with my presentation and kind of figuring out what to talk about in here. And so I want to remain mindful that I don’t have all the answers, I’m not the only person that’s doing all of this, and I welcome people to come to me with suggestions and ideas, and I’m always open to talking.</p>\n\n\n\n<p>[00:41:03] <strong>Nathan Wrigley:</strong> I don’t think there’s one size fits all really, is there? Because the WPCC feels like a really great initiative. It has more of a kind of escrow kind of service feel to it. In other words, Kinsta, you put in your X amount of dollars and then the WPCC will figure out where that might go. But it may be that, you know, you guys at Kinsta would like to have more of a kind of one-to-one relationship with the people that you are sponsoring. And so that’s fine.</p>\n\n\n\n<p>Maybe you will have back channels to the people who do similar work at different companies. And so it will be more kind of laissez-faire than something a little bit more organised. Maybe it’ll just be more back channel kind of thing.</p>\n\n\n\n<p>But that’s really interesting. Honestly, the time has got away with us. We’re at 45 minutes so far, so I think we’re fast approaching the amount of time that we’ve got available for us. Is there anything in this that we missed out? Was there any kernel, any little nugget somewhere that we failed to mention, or do you think we’ve covered the whole thing off?</p>\n\n\n\n<p>[00:41:57] <strong>Roger Williams:</strong> You know, I think the one thing that maybe we skipped through a little bit is how to get your organisation bought into this. We’ve talked about the reasoning. We’ve talked about how to sell it from the outside. We’ve talked about how to deal with the individual contributors. Inside of your organisation there’s, again, three ways that I approach this. I like the number three, I guess.</p>\n\n\n\n<p>So when you’re making your internal pitch, this is all in the slide deck as well, understanding your organisational goals. So understand like, hey, we’re a hosting company, what’s important for a hosting company? Well, performance and security are pretty top things. So maybe that’s where you want to focus.</p>\n\n\n\n<p>Again, also we have a ton of customers that are non-English speaking, so Polyglots makes a lot of sense. Understand the organisational goals so that when you go to your executives, you go to your leadership, whoever’s got the money, you’re framing this out in terms of how it benefits your organisation.</p>\n\n\n\n<p>The second one is being patient, but being ready. So I started this conversation, I want to say late 2023, inside of Kinsta. And then about a year later, suddenly, out of the blue, hey, here’s your budget, go get to work. And so I needed to be ready. So we all needed to be ready. And we were. The good news is Marcel and Alex and myself, were already out in the community talking with people. We already were having some conversations about, ooh, who would we like to sponsor, who could use the sponsorship?</p>\n\n\n\n<p>And so as soon as the budget was given to us, we were ready to go. And the reason that I recommend being ready is, these can be fleeting, right? Just because the executive has approved it this month doesn’t mean it’s necessarily going to be there the next month.</p>\n\n\n\n<p>[00:43:37] <strong>Nathan Wrigley:</strong> And also the contributor might not be, you know, I’ve got two weeks now, I can do something right away.</p>\n\n\n\n<p>[00:43:42] <strong>Roger Williams:</strong> Yeah, so be ready because they’re going to want to see results. And the results should be, the way you framed it, the results should just be, hey, we’re sponsoring contributor X, they’re doing Y and Z, oh, and I had them on a Kinsta Talk, and here’s actual proof of we’re doing stuff. So have all of that ready to go. Have a spreadsheet that tracks everything so you can track where the money’s going and it’s all clear.</p>\n\n\n\n<p>Understand how your organisation wants to handle these things, right? Is it going to be as simple as, hey, here’s a credit card and here’s a GitHub sponsorship page? Is that going to be okay? Or does it need to be a little bit more, I say complicated, involved, right? Do you need to have a non disparaging contract, right? So that it’s understood, hey, we’re sponsoring you, it’d be best if you didn’t say bad things about us, please. Get that cleared, like figure that stuff out.</p>\n\n\n\n<p>And then be ready for common objections, right? So they’re going to immediately come to you with, hey, why would we spend money on this? It’s something that we get for free. And be ready with that strategic and the operational and the second order benefits conversations. And know which of those is going to land with which manager, executive best. So getting that internal pitch ready and really creating the project so it’s ready for success from day one is really important.</p>\n\n\n\n<p>[00:45:03] <strong>Nathan Wrigley:</strong> Yeah, that’s really interesting because a lot of it, most of what we talked about in this conversation didn’t really dwell on that. It was more about the nuts and the bolts of trying to connect the two different sides. But you’ve obviously laid out the groundwork inside Kinsta to have this ready. And then the minute that the CEO or the CMO or whoever it is, says, right, Roger, here’s some money, you’re off, you’re ready to actually go and start seeking this stuff out.</p>\n\n\n\n<p>I very much doubt that this conversation is going to have a perfect outcome. I don’t suppose there is a perfect system, but I appreciate the fact that you’re giving it a lot of thought over there, and you’re trying to figure out how to make these two sides collide in a way that is mutually beneficial. Because it certainly seems that with WordPress at 40% of the web, the money question is not going away, the philanthropic side of things is not going away, and we do have to have ways for these two sides to communicate successfully with each other.</p>\n\n\n\n<p>So, okay, I will put links to anything that we have mentioned in the show notes. So if you go to wptavern.com, search for the episode with Roger Williams, you’ll be able to find everything there.</p>\n\n\n\n<p>Just one last thing, Roger. Where can we find you apart from kinsta.com? Is there a place where you hang out online if somebody wants to pick this conversation up and run with it?</p>\n\n\n\n<p>[00:46:11] <strong>Roger Williams:</strong> Yeah, absolutely. I am a big user of LinkedIn. I post there pretty regularly. If you interact with me in the comments, I will love you forever, you’re my best friend. I love it when people ask me questions, or challenge me in the comments like, let’s have conversations there. Feel free to reach out to me and let’s talk, I wanna figure this stuff out.</p>\n\n\n\n<p>[00:46:30] <strong>Nathan Wrigley:</strong> Roger Williams, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:46:34] <strong>Roger Williams:</strong> Thank you very much, Nathan. I appreciate everything that you do for the community and thank you for the time and letting me be on.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href="https://www.linkedin.com/in/rogerwilliamsmedia/">Roger Williams</a>.</p>\n\n\n\n<p>Roger Williams leads community and partner engagement at Kinsta, a company specialising in offering managed hosting for WordPress. His role involves bridging the gap between Kinsta and the wider WordPress community, working closely with agency partners, technology collaborators, and open source initiatives. Throughout his career, Roger has been deeply involved in community efforts and has recently played a key part in Kinsta’s implementation of a sponsored contributions program, helping to funnel time and resources back into WordPress and other open source projects.</p>\n\n\n\n<p>Many long-standing members of the WordPress community have contributed out of passion and a spirit of philanthropy, but as the project has grown to power over 40% of the web, the need for sustainable funding and sponsorship has become more pronounced. Roger joins us today to explore this shift, he shares insights from his WordCamp US presentation titled ‘Figuring Out Sponsored Contribution’, discussing how companies can start funding contributors, why that matters, and how to balance the business need for a return on investment with the grassroots spirit of open source.</p>\n\n\n\n<p>We begin with Roger’s background, his work at Kinsta, and how he became involved in WordPress community sponsorship. The conversation then gets into the ever evolving dynamics of sponsored contributions: how businesses can approach funding contributors, ways to surface and support valuable work, and strategies for aligning company goals with broader project needs.</p>\n\n\n\n<p>Roger breaks down the practical arguments companies can use to get internal buy-in, and the importance of clear processes, for both organisations looking to sponsor, and individuals seeking support.</p>\n\n\n\n<p>Towards the end, Roger reflects on the challenges and opportunities of connecting those from both the philanthropic and commercial sides of WordPress, and he shares advice for anyone hoping to get their organisation involved in similar programs.</p>\n\n\n\n<p>If you’re interested in how WordPress sponsorships work, how business and community might collaborate, or you’re seeking practical advice as a contributor or company, this episode is for you.</p>\n\n\n\n<h2 class="wp-block-heading">Useful links</h2>\n\n\n\n<p><a href="https://kinsta.com">Kinsta</a></p>\n\n\n\n<p><a href="https://us.wordcamp.org/2025/session/figuring-out-sponsored-contribution/">Figuring Out Sponsored Contribution</a> – Roger’s presentation at WordCamp US 2025</p>\n\n\n\n<p><a href="https://make.wordpress.org/polyglots/handbook/about/">Polyglots team</a></p>\n\n\n\n<p><a href="https://make.wordpress.org/docs/">WordPress Documentation</a></p>\n\n\n\n<p><a href="https://www.youtube.com/playlist?list=PLhYfuAN3YCfxLV7E6_q_8lClVU-TPyRBS">Kinsta Talks Podcast</a> on YouTube</p>\n\n\n\n<p><a href="https://www.thewpcommunitycollective.com">WPCC</a></p>\n\n\n\n<p>Roger on <a href="https://www.linkedin.com/in/rogerwilliamsmedia/">LinkedIn</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2025 15:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Nathan Wrigley";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:88:"Open Channels FM: Building a Culture of Openness and Growth Around Accessibility in Tech";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=112121";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"https://openchannels.fm/building-a-culture-of-openness-and-growth-around-accessibility-in-tech/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:252:"In this episode, Anne Bovelett discusses web accessibility with Marc Haunschild, emphasizing its benefits and challenges. They provide practical advice for developers, advocate for diverse teams, and promote small, iterative changes toward inclusivity.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2025 10:09:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Matt: Buffett Thanksgiving";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150541";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://ma.tt/2025/11/buffett-thanksgiving/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:849:"<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p>Choose your heroes very carefully and then emulate them. You will never be perfect, but you can always be better.</p>\n</blockquote>\n\n\n\n<p>I’m an unabashed fan of Warren Buffett and the late Charlie Munger, <a href="https://www.berkshirenerds.store/">I even have bronze busts of them in my office</a>! I was very lucky to <a href="https://ma.tt/2025/05/berkshire/">attend his last shareholder meeting</a>, as part of stepping down he’ll no longer write their <a href="https://www.berkshirehathaway.com/letters/letters.html">legendary shareholder updates</a>, but he will keep doing his Thanksgiving letters.</p>\n\n\n\n<p> <a href="https://www.berkshirehathaway.com/news/nov1025.pdf">You should give it a read</a>. It’s heartbreaking and beautiful.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Nov 2025 07:33:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WordPress.org blog: WordPress 6.9 Release Candidate 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19317";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9329:"<p>The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 RC1 can be tested using any of the following methods:</p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-RC1.zip">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href="https://make.wordpress.org/cli/">WP-CLI</a> command: <br /><code>wp core update --version=6.9-RC1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.3&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 RC1 WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href="https://make.wordpress.org/core/">Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class="wp-block-heading">What’s in WordPress 6.9 RC1?</h2>\n\n\n\n<p>Check out the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details on WordPress 6.9.</p>\n\n\n\n<p>You can browse the technical details for all issues addressed since Beta 4 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-07&until=2025-11-11">Gutenberg commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/log/?revs=61183-61203">Core commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=11%2F07%2F2025..11%2F11%2F2025&milestone=6.9&group=component&col=id&col=summary&col=milestone&col=changetime&col=type&order=id">Closed Trac tickets</a> since November 7, 2025</li>\n</ul>\n\n\n\n<p>Want to know more about this release? Here are some highlights:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Site Editor improvements and Refined content creation\n<ul class="wp-block-list">\n<li>Ability to hide blocks</li>\n\n\n\n<li>New blocks </li>\n\n\n\n<li>Notes on blocks</li>\n\n\n\n<li>Universal command palette in wp-admin</li>\n</ul>\n</li>\n\n\n\n<li>Developer updates\n<ul class="wp-block-list">\n<li>Updates to dataviews and dataforms components</li>\n\n\n\n<li>New abilities API</li>\n\n\n\n<li>Updates to interactivity API </li>\n\n\n\n<li>Updates to block binding API</li>\n</ul>\n</li>\n\n\n\n<li>Performance Improvements\n<ul class="wp-block-list">\n<li>Improved script and style handling</li>\n\n\n\n<li>Optimized queries and caching</li>\n\n\n\n<li>Added ability to handle “fetchpriority” in ES Modules and Import Maps</li>\n\n\n\n<li>Standardizing output buffering</li>\n</ul>\n</li>\n</ul>\n\n\n\n<p>The final release is on track for December 2nd. As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<h2 class="wp-block-heading">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class="wp-block-heading">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<h4 class="wp-block-heading">Calls for testing</h4>\n\n\n\n<p>Thank you to everyone who helps test the following enhancements and bug fixes:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/test/2025/10/06/call-for-testing-accordion-block/">Accordion Block</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/test/2025/10/04/call-for-testing-ability-to-hide-blocks/">Ability to Hide Blocks</a></li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/ticket/64099">Classic themes loading block styles on demand</a></li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/ticket/64204">Modified notes notifications</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/">Abilities API</a></li>\n</ul>\n\n\n\n<p>If you encounter an issue, please report it to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area</a> of the support forums, or directly to <a href="https://core.trac.wordpress.org/newticket">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href="https://core.trac.wordpress.org/tickets/major">known bugs</a>.</p>\n\n\n\n<p>Thank you to everyone who helps with testing!</p>\n\n\n\n<h3 class="wp-block-heading">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href="https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/">plugin’s readme file</a> to 6.9. </p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href="https://wordpress.org/support/forum/alphabeta/">support forum</a>.</p>\n\n\n\n<h3 class="wp-block-heading">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href="https://make.wordpress.org/hosting/test-results-getting-started/">Get started with configuring distributed hosting tests here</a>. Thank you to all <a href="https://make.wordpress.org/hosting/test-results/">web hosts who help test WordPress</a>!</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href="https://make.wordpress.org/test/">testing initiatives in Make Core</a> and join the <a href="https://wordpress.slack.com/messages/core-test/">#core-test channel</a> on <a href="https://wordpress.slack.com/">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">An RC1 haiku</h2>\n\n\n\n<p><em>As the sun rises</em>,</p>\n\n\n\n<p><em>RC1 breaks its cocoon</em></p>\n\n\n\n<p><em>and emerges strong</em>.</p>\n\n\n\n<p class="has-text-align-right"><em>Props to </em><a class="mention" href="https://profiles.wordpress.org/akshayar/"><span class="mentions-prefix">@</span>akshayar</a><em>, </em><a class="mention" href="https://profiles.wordpress.org/davidbaumwald/"><span class="mentions-prefix">@</span>davidbaumwald</a>, <a class="mention" href="https://profiles.wordpress.org/jeffpaul/"><span class="mentions-prefix">@</span>jeffpaul</a>, <a class="mention" href="https://profiles.wordpress.org/desrosj/"><span class="mentions-prefix">@</span>desrosj</a>, <a class="mention" href="https://profiles.wordpress.org/westonruter/"><span class="mentions-prefix">@</span>westonruter</a>, <a class="mention" href="https://profiles.wordpress.org/ellatrix/"><span class="mentions-prefix">@</span>ellatrix</a>, <a class="mention" href="https://profiles.wordpress.org/priethor/"><span class="mentions-prefix">@</span>priethor</a>, <a class="mention" href="https://profiles.wordpress.org/krupajnanda/"><span class="mentions-prefix">@</span>krupajnanda</a> <em>and</em> <a class="mention" href="https://profiles.wordpress.org/cbravobernal/"><span class="mentions-prefix">@</span>cbravobernal</a> <em>for proofreading and review.</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Nov 2025 15:34:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Amy Kamala";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:68:"Open Channels FM: Insights Into Successfully Rebranding Your Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111842";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://openchannels.fm/insights-into-successfully-rebranding-your-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:346:"Rebranding a podcast involves much more than updating a logo or picking a new name. It is a transformative process that requires thoughtful planning, flexibility, and perseverance. One of the most revealing parts of the journey is the way it encourages you to reevaluate how each piece fits together, from your website structure to your […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Nov 2025 11:43:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"Matt: Bending Spoons";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150536";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://ma.tt/2025/11/bending-spoons/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1275:"<p>The story of what <a href="https://bendingspoons.com/">Bending Spoons</a> has built is very impressive, and I’m a customer of theirs through <a href="https://evernote.com/">Evernote</a>, WordPress uses <a href="https://www.meetup.com/">Meetup</a> a ton. I think Automattic’s <a href="https://automattic.space/">Noho office</a> used to belong to Meetup. They’ve built an incredible engineering and product culture that can terraform technology stacks into something much more efficient. I think their acquisitions of <a href="https://techcrunch.com/2025/09/10/vimeo-to-be-acquired-by-bending-spoons-in-1-38b-all-cash-deal/">Vimeo</a> and <a href="https://techcrunch.com/2025/10/29/bending-spoons-to-acquire-aol/">AOL</a> are brilliant. This interview with Luca Ferrari on Invest Like The Best goes into their story and unique culture. I also always love a good <a href="https://en.wikipedia.org/wiki/The_Matrix">Matrix</a> reference. <img alt="🙂" class="wp-smiley" src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" style="height: 1em;" /></p>\n\n\n\n<figure class="wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Nov 2025 01:34:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:114:"WordCamp Central: WordPress Udupi Community Empowers 300+ Students Across Coastal Karnataka Through Campus Connect";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"https://central.wordcamp.org/?p=12520949";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:138:"https://central.wordcamp.org/news/2025/11/wordpress-udupi-community-empowers-300-students-across-coastal-karnataka-through-campus-connect/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:19930:"<p>As the lead organiser representing the <strong>WordPress Udupi Community</strong>, I had the incredible opportunity to bring <em>WordPress Campus Connect</em> to college campuses across <strong>Coastal Karnataka</strong>.<br />What began as a small idea soon became a mission – to introduce WordPress, open source, and digital opportunities to the next generation of creators.</p>\n\n\n\n<p>Across all our sessions, we interacted with <strong>over 300+ students</strong> from four institutions:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong><a href="https://events.wordpress.org/campusconnect/2025/udupi/partner-colleges/shree-guru-sudhindra-college-bhatkal/" rel="noreferrer noopener" target="_blank">S.G.S. College, Bhatkal</a></strong> – 50 students</li>\n\n\n\n<li><strong><a href="https://events.wordpress.org/campusconnect/2025/udupi/partner-colleges/bhandarkars-arts-and-science-college-kundapura/" rel="noreferrer noopener" target="_blank">Bhandarkar’s College, Kundapura</a></strong> – 120 students</li>\n\n\n\n<li><strong><a href="https://events.wordpress.org/campusconnect/2025/udupi/partner-colleges/dr-b-b-hegde-first-grade-college-kundapura/" rel="noreferrer noopener" target="_blank">Dr. B. B. Hegde College, Kundapura</a></strong> – 65 students</li>\n\n\n\n<li><strong><a href="https://events.wordpress.org/campusconnect/2025/udupi/imj-institute-of-science-commerce-moodlakatte/" rel="noreferrer noopener" target="_blank">IMJ Institute of Science & Commerce, Moodlakatte</a></strong> – 70 students</li>\n</ul>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/10/wordpress-campus-connect-udupi-sgs-college-bhatkal-scaled.jpg" /></figure>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/10/wordpress-campus-connect-udupi-bhandarkars-college-kundapura-min-edited-scaled.jpg" /></figure>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/10/wordpress-campus-connect-IMJ-Institute-of-Science-1.jpeg" /></figure>\n\n\n\n<p>Each campus had its own energy and challenges. Most students were in their final year, just months away from entering the professional world, yet many still lacked basic digital readiness. Some didn’t have LinkedIn profiles but had multiple Instagram accounts. Others were hesitant to speak on the mic, and a few genuinely didn’t know what to enter in the <em>PIN code</em> field while creating a WordPress.com account. Out of 300+ students, more than 250 had forgotten their Gmail passwords, so each session began with a mini Gmail recovery workshop before we even reached WordPress!</p>\n\n\n\n<p>At first, it was challenging. But soon our team switched gears, we weren’t just there as WordPress community members; we became mentors. We realised this wasn’t only about teaching WordPress; it was about building <strong>digital literacy</strong>. If not us, then who would help them take their first confident step into the web world?</p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/09/wordpress-campus-connect-udupi-4-scaled.jpg" /></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/09/wordpress-campus-connect-udupi-1-1.jpg" /></figure>\n</div>\n</div>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/09/wordpress-campus-connect-udupi-team-members-scaled.jpg" /></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/10/wordpress-campus-connect-udupi-bb-hegde-college-kundapura-4.jpeg" /></figure>\n</div>\n</div>\n\n\n\n<p>By the end, we witnessed real transformation, shy students asking questions, first-time creators proudly launching their sites, and a spark of curiosity lighting up across classrooms.</p>\n\n\n\n<p>We’re grateful to all the colleges, their management, and faculty for the warm welcome, and to every student who showed curiosity and enthusiasm once they got started.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h3 class="wp-block-heading"><strong>Organising Team</strong></h3>\n\n\n\n<p><strong>Organisers:</strong> <a href="https://profiles.wordpress.org/arbishashishetty" rel="noreferrer noopener" target="_blank">Shashikanth Shetty</a>, <a href="https://profiles.wordpress.org/kkeerthiprabhu/" rel="noreferrer noopener" target="_blank">Keerthi Prabhu</a> & <a href="https://profiles.wordpress.org/vgnavada" rel="noreferrer noopener" target="_blank">V Gautham Navada</a><br /><strong>Facilitators:</strong> <a href="https://profiles.wordpress.org/omkarudupa" rel="noreferrer noopener" target="_blank">Omkar Udupa</a>, <a href="https://profiles.wordpress.org/manjunathmm" rel="noreferrer noopener" target="_blank">Manjunath M M</a>, <a href="https://profiles.wordpress.org/chandanagm/" rel="noreferrer noopener" target="_blank">Chandana G M</a><br /><strong>Social Media Designs & Reels:</strong> <a href="https://profiles.wordpress.org/ranjithacgowda/" rel="noreferrer noopener" target="_blank">Ranjitha GC</a></p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" src="https://events.wordpress.org/campusconnect/2025/udupi/files/2025/10/wordpress-campus-connect-wordpress-udupi-community-team-members-scaled.jpg" /><figcaption class="wp-element-caption">The WP UDUPI TEAM – From left to right – Omkar, Shashikanth, Manjunath, Gautham, Keerthi, and Chandana.</figcaption></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h3 class="wp-block-heading"><strong>Sponsors</strong></h3>\n\n\n\n<p><strong>Global Sponsors:</strong> <a href="https://automattic.com" rel="noreferrer noopener" target="_blank">Automattic</a>, <a href="https://bluehost.com" rel="noreferrer noopener" target="_blank">Bluehost</a>, <a href="https://hosting.com" rel="noreferrer noopener" target="_blank">Hosting.com</a>, <a href="https://kinsta.com/" rel="noreferrer noopener" target="_blank">Kinsta</a>, <a href="https://WooCommerce.com/" rel="noreferrer noopener" target="_blank">WooCommerce</a><br /><strong>Local Sponsors:</strong> <a href="https://sabweb.in/" rel="noreferrer noopener" target="_blank">SabWeb</a>, <a href="https://forthfocus.com/" rel="noreferrer noopener" target="_blank">ForthFocus</a>, <a href="https://yukthadigital.com/" rel="noreferrer noopener" target="_blank">Yuktha Digital</a>, <a href="https://kotisoftsolutions.com" rel="noreferrer noopener" target="_blank">Koti Soft Solutions</a></p>\n\n\n\n<p>A heartfelt thanks to <a href="https://wordpress.com/" rel="noreferrer noopener" target="_blank">WordPress.com</a> for sponsoring free one-year website plans for students from our last two campuses, an initiative that has already helped many of them start blogging and showcasing their work online.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h3 class="wp-block-heading"><strong>Student Testimonials</strong></h3>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-embed is-type-rich is-provider-instagram wp-block-embed-instagram"><div class="wp-block-embed__wrapper">\n<blockquote class="instagram-media"><div style="padding: 16px;"> <a href="https://www.instagram.com/reel/DPoBui1k4ba/?utm_source=ig_embed&utm_campaign=loading" style="line-height: 0; padding: 0 0; text-align: center; text-decoration: none; width: 100%;" target="_blank"> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display: block; height: 50px; margin: 0 auto 12px; width: 50px;"></div><div style="padding-top: 8px;"> <div style="color: #3897f0; font-family: Arial,sans-serif; font-size: 14px; font-style: normal; font-weight: 550; line-height: 18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; margin-bottom: 14px;"><div> <div></div> <div></div> <div></div></div><div style="margin-left: 8px;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 20px; width: 20px;"></div> <div></div></div><div style="margin-left: auto;"> <div></div> <div></div> <div></div></div></div> <div style="display: flex; margin-bottom: 24px;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 144px;"></div></div></a></div></blockquote>\n</div></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-embed is-type-rich is-provider-instagram wp-block-embed-instagram"><div class="wp-block-embed__wrapper">\n<blockquote class="instagram-media"><div style="padding: 16px;"> <a href="https://www.instagram.com/reel/DPDnPevk_Ib/?utm_source=ig_embed&utm_campaign=loading" style="line-height: 0; padding: 0 0; text-align: center; text-decoration: none; width: 100%;" target="_blank"> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display: block; height: 50px; margin: 0 auto 12px; width: 50px;"></div><div style="padding-top: 8px;"> <div style="color: #3897f0; font-family: Arial,sans-serif; font-size: 14px; font-style: normal; font-weight: 550; line-height: 18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; margin-bottom: 14px;"><div> <div></div> <div></div> <div></div></div><div style="margin-left: 8px;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 20px; width: 20px;"></div> <div></div></div><div style="margin-left: auto;"> <div></div> <div></div> <div></div></div></div> <div style="display: flex; margin-bottom: 24px;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 144px;"></div></div></a></div></blockquote>\n</div></figure>\n</div>\n</div>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h3 class="wp-block-heading"><strong>College Testimonial</strong></h3>\n\n\n\n<figure class="wp-block-embed is-type-rich is-provider-instagram wp-block-embed-instagram"><div class="wp-block-embed__wrapper">\n<blockquote class="instagram-media"><div style="padding: 16px;"> <a href="https://www.instagram.com/reel/DO8p57yk4cm/?utm_source=ig_embed&utm_campaign=loading" style="line-height: 0; padding: 0 0; text-align: center; text-decoration: none; width: 100%;" target="_blank"> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display: block; height: 50px; margin: 0 auto 12px; width: 50px;"></div><div style="padding-top: 8px;"> <div style="color: #3897f0; font-family: Arial,sans-serif; font-size: 14px; font-style: normal; font-weight: 550; line-height: 18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; margin-bottom: 14px;"><div> <div></div> <div></div> <div></div></div><div style="margin-left: 8px;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 20px; width: 20px;"></div> <div></div></div><div style="margin-left: auto;"> <div></div> <div></div> <div></div></div></div> <div style="display: flex; margin-bottom: 24px;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 144px;"></div></div></a></div></blockquote>\n</div></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<h3 class="wp-block-heading"><strong>Media Coverage </strong></h3>\n\n\n\n<p>We were also featured in several local and regional media outlets that recognized the impact of the initiative. You can read the articles and see coverage highlights below:<br /></p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>UdupiTimes:</strong> <a href="https://udupitimes.com/udupi-times-21221/" rel="noreferrer noopener" target="_blank">ವರ್ಡ್ಪ್ರೆಸ್ ಕ್ಯಾಂಪಸ್ ಕನೆಕ್ಟ್ ಉಡುಪಿ: ವಿದ್ಯಾರ್ಥಿಗಳಿಗೆ ಡಿಜಿಟಲ್ ಪ್ರೇರಣೆ</a></li>\n\n\n\n<li><strong>Kundapraa.com:</strong> <em><a href="https://kundapraa.com/?p=91248" rel="noreferrer noopener" target="_blank">ಕುಂದಾಪುರ: ವರ್ಡ್ಪ್ರೆಸ್ ಕ್ಯಾಂಪಸ್ ಕನೆಕ್ಟ್: 120 ವಿದ್ಯಾರ್ಥಿಗಳಿಗೆ ಪ್ರಾಯೋಗಿಕ ತರಬೇತಿ</a></em></li>\n\n\n\n<li><strong>NewsNext</strong>: <em><strong><a href="https://newsnext.live/technology/wordpress-campus-connect-udupi-empowers-65-students-at-dr-b-b-hegde-college-kundapura/" rel="noreferrer noopener" target="_blank">WordPress Campus Connect Udupi Empowers 65 Students at Dr. B.B. Hegde College, Kundapura</a></strong></em></li>\n\n\n\n<li><strong>Tulunada Dhwani: </strong><em><a href="https://tulunadadhwani.com/news/wordpress-4/" rel="noreferrer noopener" target="_blank">ಮೂಡ್ಲಕಟ್ಟೆದ ಐಎಂಜೆ ಕಾಲೇಜಿಡ್ ವರ್ಡ್ ಪ್ರೆಸ್ ಕ್ಯಾಂಪ್..</a></em></li>\n</ul>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-embed is-type-rich is-provider-instagram wp-block-embed-instagram"><div class="wp-block-embed__wrapper">\n<blockquote class="instagram-media"><div style="padding: 16px;"> <a href="https://www.instagram.com/p/DPie-qQkwBF/?utm_source=ig_embed&utm_campaign=loading" style="line-height: 0; padding: 0 0; text-align: center; text-decoration: none; width: 100%;" target="_blank"> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display: block; height: 50px; margin: 0 auto 12px; width: 50px;"></div><div style="padding-top: 8px;"> <div style="color: #3897f0; font-family: Arial,sans-serif; font-size: 14px; font-style: normal; font-weight: 550; line-height: 18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; margin-bottom: 14px;"><div> <div></div> <div></div> <div></div></div><div style="margin-left: 8px;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 20px; width: 20px;"></div> <div></div></div><div style="margin-left: auto;"> <div></div> <div></div> <div></div></div></div> <div style="display: flex; margin-bottom: 24px;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 144px;"></div></div></a></div></blockquote>\n</div></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-embed is-type-rich is-provider-instagram wp-block-embed-instagram"><div class="wp-block-embed__wrapper">\n<blockquote class="instagram-media"><div style="padding: 16px;"> <a href="https://www.instagram.com/p/DQbnp7mk8Mt/?utm_source=ig_embed&utm_campaign=loading" style="line-height: 0; padding: 0 0; text-align: center; text-decoration: none; width: 100%;" target="_blank"> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 40px; margin-right: 14px; width: 40px;"></div> <div style="display: flex;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 100px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 60px;"></div></div></div><div style="padding: 19% 0;"></div> <div style="display: block; height: 50px; margin: 0 auto 12px; width: 50px;"></div><div style="padding-top: 8px;"> <div style="color: #3897f0; font-family: Arial,sans-serif; font-size: 14px; font-style: normal; font-weight: 550; line-height: 18px;">View this post on Instagram</div></div><div style="padding: 12.5% 0;"></div> <div style="display: flex; margin-bottom: 14px;"><div> <div></div> <div></div> <div></div></div><div style="margin-left: 8px;"> <div style="background-color: #F4F4F4; border-radius: 50%; height: 20px; width: 20px;"></div> <div></div></div><div style="margin-left: auto;"> <div></div> <div></div> <div></div></div></div> <div style="display: flex; margin-bottom: 24px;"> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; margin-bottom: 6px; width: 224px;"></div> <div style="background-color: #F4F4F4; border-radius: 4px; height: 14px; width: 144px;"></div></div></a></div></blockquote>\n</div></figure>\n</div>\n</div>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p>For the <strong>WordPress Udupi Community</strong>, this journey was much more than a series of campus sessions. It was a reminder that true change starts with awareness and sometimes, the first step toward digital empowerment is simply helping someone log in.</p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p><strong>To any student or job seeker reading this:</strong><br />Don’t wait for the syllabus to teach you what the world already expects you to know. Curiosity is your real qualification!</p>\n</blockquote>\n\n\n\n<p><em>WordPress Campus Connect Udupi 2025 </em>turned out to be more than an event, it became a movement, proving that communities like ours can make a real-world impact, one campus at a time.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 10 Nov 2025 13:19:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"vgnavada";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: Meshtastic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150524";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:33:"https://ma.tt/2025/11/meshtastic/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:942:"<p>I’ve been following this cool open source project called <a href="https://meshtastic.org/">Meshtastic</a>, which is “An open source, off-grid, decentralized, mesh network built to run on affordable, low-power devices.” I finally got some time to set it up tonight. It was super easy; <a href="https://flasher.meshtastic.org/">you just flash the Meshtastic firmware in your browser</a> to any of the compatible devices. I got a Heltec v3 device for $35 bucks on Amazon. (I’d link but it’s out of stock, and I think there’s a newer version.) Apparently, there are enough people running nodes that you can bounce a message from Portland to San Francisco! I love the idea of parallel to the internet networks, and I’ve been meaning to <a href="https://www.fcc.gov/wireless/bureau-divisions/mobility-division/amateur-radio-service">get a HAM license</a>, but in the meantime, this looks pretty fun.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 10 Nov 2025 01:37:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"Gutenberg Times: Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:53:"https://gutenbergtimes.com/?post_type=podcast&p=42753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:52553:"<p>In episode 124 of the Gutenberg Changelog podcast, Birgit Pauli-Haack and guest Ellen Bauer discuss the latest WordPress and Gutenberg updates, including the upcoming WordPress 6.9 release and Gutenberg 22.0. Highlights include insights on AI-powered site building, the importance of collaboration tools like block comments, new blocks such as accordion and stretchy text, and the enhanced plugin security review. </p>\n\n\n\n<p>Ellen Bauer shares her experiences from WordCamp Kansai and speaks on the impact of AI in making WordPress site building more accessible. They also touch on improvements for theme authors, plugin developers, and the upcoming WordCamp Asia. The episode wraps up with community announcements and a look ahead to features planned for WordPress 7.0.</p>\n\n\n\n<p></p>\n\n\n\n<p><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/#shownotes">Show Notes</a> / <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9//#transcript">Transcript</a></p>\n\n\n\n<ul class="wp-block-list">\n<li>Editor: <a href="https://www.linkedin.com/in/sandy-reed/">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href="https://markuraine.com/">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href="https://icodeforapurpose.com">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class="has-larger-font-size" id="shownotes"><strong>Show Notes</strong></p>\n\n\n\n<h2 class="wp-block-heading">Special Guest: Ellen Bauer</h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://x.com/ellenbauer">On X (former Twitter) @ellenbauer</a></li>\n\n\n\n<li><a href="https://bsky.app/profile/ellenbauer.bsky.social">Bluesky</a></li>\n\n\n\n<li><a href="https://www.elmastudio.de/en/">ElmaStudio</a></li>\n\n\n\n<li>Previews appearances on the show\n<ul class="wp-block-list">\n<li><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-117-woocommerce-starter-theme-and-blocks/">Gutenberg Changelog 117 – WooCommerce Starter Theme and Blocks, WordCamp Europe, and Gutenberg 20.7 and 20.8</a></li>\n\n\n\n<li><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-105-gutenberg-18-9-block-themes-and-woocommerce/">Gutenberg Changelog #105 – Gutenberg 18.9, Block Themes and WooCommerce</a></li>\n\n\n\n<li><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/">Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.</a></li>\n</ul>\n</li>\n\n\n\n<li>Talk at WordCamp Kansai: <a href="https://kansai.wordcamp.org/2025/session/building-a-woocommerce-store-using-block-themes-and-ai-site-building/">Building a WooCommerce Store Using Block Themes and AI Site Building</a></li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">Announcements & Community</h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/11/06/update-on-phase-3-2025/">Update on Phase 3: Collaboration efforts (Nov 2025)</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/plugins/2025/10/29/plugin-check-plugin-now-creates-automatic-security-reports-update/">The Plugin Check Plugin now creates automatic security reports after each plugin update</a>. </li>\n\n\n\n<li><a href="https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/">Internet Archive Wayback Machine Link Fixer</a> </li>\n\n\n\n<li><a href="https://ma.tt/2025/10/wayback/">Wayback Machine Joint</a></li>\n\n\n\n<li><a href="https://wordpress.com/blog/2025/10/08/introducing-blueprints-in-wordpress-studio-1-6-0/">Introducing Blueprints in WordPress Studio 1.6.0</a></li>\n\n\n\n<li>Talks about Playground Blueprings by Birgit Pauli-Haack\n<ul class="wp-block-list">\n<li><a href="https://wordpress.tv/2025/09/30/streamlined-block-theme-development-using-wordpress-playground-and-github-for-no-code-version-contr/">Streamlined Block Theme Development: Using WordPress Playground and GitHub for No-Code Version Control of Site Editor Changes</a></li>\n\n\n\n<li><a href="https://wordpress.tv/2025/06/07/from-zero-to-demo-mastering-wordpress-playground-blueprints/">From Zero to Demo: Mastering WordPress Playground Blueprints</a></li>\n\n\n\n<li><a href="https://wordpress.tv/2025/04/30/create-a-demo-with-playground/">Create a demo with Playground</a><br /></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">What’s Released</h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/11/07/wordpress-6-9-beta-4/">WordPress 6.9 Beta 4</a></li>\n\n\n\n<li>Tutorials on WordPress Developer Blog\n<ul class="wp-block-list">\n<li><a href="https://developer.wordpress.org/news/2025/11/how-wordpress-6-9-gives-forms-a-theme-json-makeover/">How WordPress 6.9 gives forms a theme.json makeover</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/">Styling accordions in WordPress 6.9</a> </li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/">Border radius size presets in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/">Registering custom social icons in WordPress 6.9</a></li>\n</ul>\n</li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/">What’s new in Gutenberg 22.0? (5 November)</a></li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">What’s in the works or discussed?</h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/issues/72032">WordPress Scripts: A vision for a v2 version</a></li>\n\n\n\n<li>Developer Hours: <a href="https://www.meetup.com/learn-wordpress-online-workshops/events/311854653/"><strong>WordPress 6.9: developer updates</strong></a></li>\n</ul>\n\n\n\n<p class="has-large-font-size">Stay in Touch</p>\n\n\n\n<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">\n<ul class="wp-block-list">\n<li>Did you like this episode? <a href="https://lovethepodcast.com/gutenbergchangelog"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href="https://twitter.com/gutenbergtimes">@gutenbergtimes </a>and <a href="https://twitter.com/bph">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href="https://gutenbergtimes.com/itunes/">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class="has-large-font-size" id="transcript"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Welcome to our 124th episode of the Gutenberg Changelog podcast. In today’s episode, we will talk about Gutenberg 22.0 and WordPress 6.9 and so much more. I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project sponsored by Automattic. </p>\n\n\n\n<p>Today on a Saturday morning, Ellen Bauer joins us from New Zealand. She works for Automattic as a product manager, works with themes, blocks and the AI site building tool. And as a former agency owner and professional theme builder and designer, she brings important perspectives to the software powering millions of merchants at WooCommerce of the World. She’s also a longtime friend and I’m delighted you join me again, Ellen, to the show. Welcome and how are you today?</p>\n\n\n\n<p><em>Ellen Bauer: </em>Thank you very much. That was a lovely introduction. I should copy that for my who I am. I actually like that. Thanks, Birgit. I’m very well. It’s very early in the morning for me, so please bear with me everyone. If I’m babbling a little bit. I yeah, I’m very well. I’m actually very recharged because I just returned from Botkin Kansai in Japan, and I added a little personal holiday on top of that with my family. So yeah, that was a lovely time away and it’s always good to connect to the community and attend WordCamps because yeah, you just feel recharged and inspired. So yeah, I’m feeling really excited and I’m happy to be on that podcast here again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Always so glad you’re here. So don’t worry as long as you don’t snore. We are, we take anything that you want to say.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Inspired my by my Japan travels. I’m having a green tea next to me so that should keep me running.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, and I have green tea too, but that’s now from a shop that I saw in Taipei two years ago at WordCamp Asia. So I’m really kind of every time I have a cup of tea, I’m thinking back on that. </p>\n\n\n\n<h3 class="wp-block-heading">WordCamp Kansai, WordCamp Asia</h3>\n\n\n\n<p>So you gave a talk at WordCamp Kansai about building a WooCommerce store using block themes and AI site building. So how did it go and what did you learn from putting it together actually.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So I was again, it’s a very new topic for me, so I was like, oh, what did I do to myself presenting that. But it was very exciting and there were a few AI talks that were really, really cool at the WordCamp. So it’s a good idea to check out the YouTube stream from the WordCamp other videos there. It was really cool to talk about a topic that I’m very excited about and just kind of getting into more and more with my work at Automatic as well. So I learned a lot. I looked at a lot of competitors and what they’re doing and obviously AI inside. It’s pretty wild what is happening and fast paced. So I think it was good to also bring the topic to a WordCamp and I had really, really positive feedback. Everyone was excited. The room was packed which I didn’t expect with an English speaking talk at a WordCamp. They had a live translation which worked really well and that was cool. A lot of questions in the end as well and a good conversation and yeah, just an exciting new opportunity for me. I see it as just AI is a possibility to help us fix or help us with the problems users have with site building because it’s not easy to do us to build your front end site for WordPress Store or any website. So if AI tools can help users, our WordPress users, us to do these things a little easier and faster and maybe more inspirational with real content, like more related content and images that relate to the site you actually want to build. I think that’s just very exciting. And yeah helps for me seeing users struggle with our themes as well and finding the right theme for what they wanted to build over the years. I think it’s just a great opportunity to make it easier for users and also kind of then yeah make WordPress attractive on another level to very beginner users and can just do so much. It’s an exciting time, honestly I think.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah, no, I hear you. Yeah, There is this. WordPress.com has started with the AI site builder and I find it really helps with the onboarding of users that just want to get a site built. You still have to make the decisions about what’s your content about and what are the images that you want to do but. But it kind of gets out of the way in putting those things in and you don’t have to search for things too much. I think that WordPress 6.9 also and we’re going to talk a little bit later about the whole release that’s coming up with a command palette. Yeah, you can really shortcut some of the things, but you still need to know what you want to do to put the command in to get to where you want. But it’s also, yeah, there’s a lot of help out there. And I’m really excited also for the AI site building that ends up with a block theme and with a really fast site. So it’s a really cool thing.</p>\n\n\n\n<p><em>Ellen Bauer</em>: Yeah. What I like about it too, that it’s on the blocks patterns. Block theme foundation. What you can test. I really like it for something that is difficult for nonvisual users is you can get color palettes, ideas, you get template ideas. Because one of the things I always hear also with patterns from users, it’s like how do I decide which. You maybe have a pattern library in a theme, but it’s like how do you decide to put a page together with these patterns? It’s very challenging. Users don’t really know should I have testimonials in the bottom or at the top or what is most important? So there’s template page templates, suggestions shown and you can just pick one. It makes it way easier and more appealing. Same with like fonts. How should I know if the font is a professional font or a classic or more modern? It’s very difficult to tell. That’s like very advanced decisions you need to make on the design side as well. So if we can give suggestions and help, I think that makes it just easier and also more fun to build sites. Yeah. Another thing I probably have mentioned on the podcast is the word telex and doing. And you can test about it. Probably. Yeah. Because that’s also another thing I was like, oh, that’s so exciting because you can build blocks with AI and it’s so difficult to build blocks, but now it’s easy to have an idea and build a block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. There was this blocktober fund by Tammie Lister which is now came to end. But there are 31, I think blocks that she built and she had some great ideas. I will put a link to it in the show notes again, but because what you can learn from there is also how you prompt the telex to actually get something out of it. So it was a really cool thing. And other people did also some, some great thing with Telex, the experimental block builder. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer:</em> So that was also part of my talk prompting tips. And I think you could do a whole talk just about that and it will be way more important moving on how we. Yeah. How we talk to AI to actually make it efficient.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, absolutely. </p>\n\n\n\n<p><em>Ellen Bauer: </em>Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And I’m really looking forward to the next flagship WordCamp where that will probably be even more prominent because the next one is WordCamp Asia in Mumbai. And I submitted some Talks there, not AI talks, but I’m still in the you build it yourself kind of block theme. I will do a workshop on block themes and how the different workflows work together. And so the good news was that the WordCamp Asia speaker team extended the deadline for speaker submission to December 15, which is kind of another month out.</p>\n\n\n\n<p><em>Ellen Bauer:</em> So I thought it was November, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And that was. They made a mistake on their Twitter account. I clarified that in the WC Asia channel on WordPress Slack so you can read up about it. But because there was a discrepancy between what the website said under speaker submission, what the tweet said. And it’s actually December 15th. Yeah, you don’t have to worry. Hurry next week.</p>\n\n\n\n<p><em>Ellen Bauer:</em> Oh, that is nice. The WordCamp Asia in Mumbai is. I just checked the date April 9 to 11 for everyone looking for travel dates and I submitted a talk as well. I will submit maybe a better version, improved version if I now have more time, which is great because it was a rushed application. But yeah, I’m really excited for that outcome and really, really hope I can make it there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. It’s the week after Easter so if you want to go a little bit earlier, you have some Easter holidays to cover your vacation, not to have to take. Well, in Germany we have three days, no two days vacation or holidays that are around Easter. So it’s a Good Friday as well as the Easter Monday they are off in Germany. So we have another holiday weekend that we could go there. So we plan to be a little bit ahead of time in Mumbai in India. So yeah, it’s going to be interesting. They also have a schedule of when they release tickets so you can go on the website and see that at the WordCamp Asia website, I think November 11th and then they have two more dates where they release tickets because the first one actually sold out within an hour or something like that. Yeah, yeah, I think it’s going to be a huge bootcamp.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I think I got my tickets already for us, so. Yeah, but that’s nice that they released the dates.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. The Guternberg Times, I also applied for media partners, so either speaker or media partner, maybe I will get my tickets that way. </p>\n\n\n\n<h3 class="wp-block-heading">Announcements</h3>\n\n\n\n<p>So yeah, so we’re coming through the announcements. The first one that I wanted to talk about is that Anne McCarthy updated us in her post update on phase three collaboration efforts November 2025 on the state of the phase three, the progress made, what’s in the works for the Future and especially WordPress 7.0. Now we’re talking 7.0 on the eve of release candidate for 6.9; there is not a whole lot of more information out there and the post is talking about the real time collaboration with multiple authors. Edit the content simultaneously without conflict. Now this feature has been tested with a small group of clients from WordPress VIP, but they’re loving it it seems, and they are bringing things to Core WordPress 6.9 has the asynchronous notes of collaboration. That’s the commenting on blocks that comes to WordPress December, but it allows you to add comments directly on the content blocks and there will be refinements and additional features kind of coming in the future. And what’s also prepared for WordPress 10.0 is behind the scenes the contributors are rebuilding the admin screens with a new Data View and Data Forms tools. There’s a whole new Fields API that kind of runs the data form components and then you organize and display information on admin pages. Part of it is also Media Library revamp and the extensibility for plugin developers. So that’s pretty much kind of a short rundown of what’s in the post. It’s much more detailed information with links to GitHub issues and PRs and all that. Any comments?</p>\n\n\n\n<p><em>Ellen Bauer: </em>I’m actually really, really excited about that and the start of that. It’s cool to see that in 6.9 already. I think just collaboration in general within WordPress is one of the things missing to have this thing like in Google Docs we all kind of love it. It’s so easy and yeah, I’m just so, so excited to get that in because we have always run our Elmo Studio blog with two people and at some point like even we had guest authors. So yeah that just makes it so much easier to actually work together in WordPress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah and well we use Google Docs for any of the articles be it on the developer blog or internally at Automattic or for the Gutenberg Times. And this would just eliminate one step because you still have that step left that you need to copy paste things over and put the images in. And if you can start drafting already in WordPress it eliminates so much time that you kind of win there. It’s really cool.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I never, I can’t even write in Google Docs, and I’m actually I’m using Notion as a drafting tool because it just doesn’t look as nice so. And yeah just easier if you can just collaborate within your save so much time and effort and it just, it’s just Nice to see the people you’re working with in your post and kind of work together there, the comments and feedback and I think even also for design stuff like I love Figma comments as well. It’s just. Hello, it’s so good to give feedback. So even if we can have a block section or even on patterns, we can comment on design topics as well there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Ellen Bauer:</em> So yeah, even for the visual part of feedback on pattern designs and stuff, it will be really exciting to use that too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely.</p>\n\n\n\n<p><em>Ellen Bauer: </em>For writers and content creators.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So what is probably coming to WordPress 7.0 is that you also can highlight text. Not right now, you only can comment in the notes, just on single blocks. Yeah. So if the block is a long paragraph, you cannot just highlight things and then comment on that. So it’s not like Google Docs yet. But I think that’s the aim that developers have to make that work as well. I’m really excited for what’s to come. We’ll see. But it’s a lot of work. But the last half a year there has been some great progress there. </p>\n\n\n\n<p>All right, so the next thing that I wanted to point out here is the new the plugin review team has this plugin check plugin that you can as a plugin developer kind of use and check your plugins before you submit it. So you don’t get a whole lot of back and forth with the review team until they approve your plugin. That plugin also has a new version and the review team announced it just last week that they now not only screen new plugins that come to the repository, but also will screen updated plugins or plugin updates for security, compatibility and compliance. Right now it’s in testing form so currently the team evaluates the information only internally and sends reports to authors if needed. And they want to kind of. It’s like the normal WordPress way, you kind of look what it does and then you iterate on it. Yeah, they want to observe the behavior during updates and put in some refinements. </p>\n\n\n\n<p>And after that initial testing phase, automated security reports will be emailed to authors right after the plugin updates. This is such a huge progress because plugins account for 96% of WordPress vulnerabilities in 2024 in a report. And that increased scrutiny on the WordPress plugins repository is really a huge impact on the health of the whole WordPress ecosystem and it definitely will make the web a better place with 43% of all websites being WordPress having that additional layer There is really going to be huge.</p>\n\n\n\n<p><em>Ellen Bauer:</em> I love that too because yeah, it’s funny, I just remembered when you said that most of the. As a theme author, I can’t even count the number of times I get support requests for something is broken. And first thing I always said, oh yeah, I kind of sensed, oh, it’s, it’s a plugin. It’s most of the time the theme is not affected because there’s not much to a theme. You have to deactivate all your plugins and check the list when the error occurs. I think. I don’t know how much time I spend on plugin support actually as a theme author.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. I mean security, if you put a point to it, is actually something the server or the hosting company should really implement as well as an agency. When we were dealing with other websites from other people that actually support their businesses. Yeah. We made sure that they are on a hosting company that actually has their own security screening and the automating, removing of malware if that occurs. The plan might be a little bit more expensive, but it’s kind of that peace of mind for all of us is really important. But yeah, even then things could get through.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So yeah, yeah, this is like very important help.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Absolutely.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I think that if the offerings also for Hostess got better over the years, I think and more awareness. But yeah, just funny. It’s like part of my WordPress history is fixing plugin update issues.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Ellen Bauer:</em> Gosh.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. But I, I, that was work that I really hated.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Yeah. Although it’s money because I was like, I’m just. It’s a theme, but it’s not the theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>No, no. It wasn’t something I thought or something like that. Or it was more like it’s not work that I would like to do. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So it was also work that we weren’t paid for. It was a lot of support. We did.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>But even if you get paid, it’s not work you want to do.</p>\n\n\n\n<p><em>Ellen Bauer: </em>That’s true.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, some people do, but yeah.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So yeah, I didn’t like it either, but I had kind of. It’s funny if you do it like for so many years, like 10 years or so, you get a sense of. Also if you see the plugin that you already kind of know, like it’s like a six, then do you get on where the problem is? It’s kind of weird.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Absolutely. Yeah. Yeah. I think also the site health plugin that the WordPress contributors put together is really helpful in just kind of eliminating the plugins and that kind of. Yeah, that really helped with the research. But yeah, that can also happen. Not in a security context. It’s just kind of. Yeah, it broke my site. Yeah. So some update because it was a plugin conflict and the site health plugin is really helpful for that. </p>\n\n\n\n<h3 class="wp-block-heading">Community Contributions</h3>\n\n\n\n<p>So there’s WordPress Studio. I think I’m not sure if we ever mentioned it here at the podcast. It’s an open source local development tool and it now can handle blueprints and those are Playground blueprints. So they’re lightweight and they’re fast to implement and it’s a topic close to my heart. This year I did many talks about Playground and the blueprints and you can watch three of them on WordPress TV and I will have the link in the show notes. They are now available also to be used in Studio because Studio is based on Playground so it makes spinning up new sites so much faster. You can select three pre-built blueprints. One is just a quickstart WordPress.com website or a site for building plugins or themes, or creating an online store with WooCommerce and companion plugins pre-installed. But you could also kind of build your own and have all the plugins that you ever want to need for any site and spin up a new site with the theme or with some standards that you in an agency or as a freelancer always use and then can work on it. And I love this local development tool and paired with Playground CLI. Yeah it made my testing and development so much easier. It’s really great.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I use it every day as well. Yeah, I didn’t. I wasn’t aware that there’s a WooCommerce version of the blueprint as well. That is cool because you don’t need to go ahead and test. Sometimes you just need to test a store and you don’t want to install all the plugins yourself a little bit annoying. So that can be.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>It’s absolutely handy.</p>\n\n\n\n<p><em>Ellen Bauer: </em>The next update I will cover that and it’s actually kind of an interesting thing and Matt blogged about it on his personal blog as well. So you can check out that link. It’s that a new plugin called the Internet Archive Wayback Machine Link Fixer. That’s a long name for plugin, but it helps to get an archived link to any kind of broken link that you have. Which for a lot of us who have older WordPress blogs or websites that is probably the case. And I actually I haven’t installed the plugin yet, but I will go to do that this weekend because yeah, that’s exciting. You can just get a link to any, any broken link to the Wayback Machine version, archived version of that website or blog post. And yeah, check out that post on Matt’s blog where he talks about it quickly and introduces it and yeah, I think that’s a really cool additional plugin that we have available to help with broken links. Really exciting. I love that. I will, I will test it and then maybe I blog about it too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. So go ahead. The plugin is free, but you need a free account on the Internet Archive site to obtain an API key because you tap in right into this and to connect your site to the interactor Archive. And then step two and three, you just have to make some additional decisions. But they’re very well explained about if you want automatically your site kind of put into the Wayback Machine and all that. </p>\n\n\n\n<p>Just for people who don’t know, the Internet Archive is a nonprofit library of millions of free text, movies, software, music, websites and more. And they run the Wayback Machine which pretty much surfaces previous versions of websites. So if you are new to a company and you want to do a redesign of the website, you probably want to go back and see what have they done in previous redesigns to kind of go back to see what’s important to them. And it’s probably a better way than to ask 15,000 questions.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Yeah, that’s a nice idea. I haven’t thought about that. I actually love to go sometimes on the Wayback Machine with Manu. Just kind of looking at the old designs we had for our own website. It’s so fun to do that. Old designs of other sites that you loved and really, really fun. You can check out the old WordPress. Org versions or even like the Google Google site. It’s just fun to do that. And you kind of get a little bit of a nostalgic feeling. Oh yes, I remember that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So when I started Gutenberg Times I had the 2019 default theme on it. And then somewhere in 2020 I think I switched to the Excel theme by Anders Noren and there were a few things that didn’t work that way in the other themes. So I just kind of adopted. And then now I come back and kind of compare what was the old one and what was the new one. It was, it was really interesting because I’m now building the third theme for, for the site and I want to do it myself and now I can do whatever I want with it without having to follow a theme, but I still wanted to make sure that I have all the things that I thought were important also in the new theme. So we’ll see. I’m definitely going to share my journey.</p>\n\n\n\n<p><em>Ellen Bauer: </em>You plan to update that soon?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Soon as a relative term.</p>\n\n\n\n<p><em>Ellen Bauer: </em>When do you do it?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I’d like to have it by the end of the year, but we’ll see how that comes out. Yeah. I built it already. I needed an additional plugin for my podcast because I wanted to have the social icons from the podcast directories where our podcast is in. And only the 6.9 now has the possibilities that you can do custom social icons. So I tested that and it works. But I need to wait till it’s out too. So the plugin is available but it’s in the plugin repository. But I have one fix that I need to do. But also I wanted to have a better template for the podcast and the plugin API to register templates. That was in 6.8, but I needed to figure out how that works as well. Not all the things that I talk about. I know how to do it when I want to do it. It’s kind of really interesting.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Yeah. And it’s always just finding the time for these on the side things.</p>\n\n\n\n<h3 class="wp-block-heading">What’s Released – WordPress 6.9 Beta 4</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So now we’re coming to the what’s released section of our podcast and the first one is today, Friday, November 7, WordPress 6.9 beta 4 was released. It’s a quiet beta. It has a release post, but that’s on the make blog. Just because there was one thing that they needed to reverse and so they wanted before the release candidate on Tuesday, November 11, they wanted to have another beta to make sure everything works all right or the thing that they changed works all right. Let me put it this way. Yeah. So this is also a good place to talk about last minute WordPress 6.9 feature decisions. Contributors have decided to not move ahead with the enhanced template management feature for this version. The content only editing was also punted to 7.0 as well as the updated block binding UI for external sources, there were a few issues with all three of them during testing sessions and that can’t be While the content only editing was earlier decided that it’s not going to come to 6.9, but the other two, there were issues that couldn’t be resolved in the remaining time before the strength freeze in release candidate one, which is Tuesday. So yeah. Ellen, what are your favorite features for 6.9? Anything standing out for you?</p>\n\n\n\n<p><em>Ellen Bauer: </em>Yes, I was looking forward to the template management feature of course we have to wait. We have to wait for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It’s still in Gutenberg. Yeah, it’s still in the plugin. It’s just not.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Then second pick. I still am super excited that at least we start with the commenting option on post. Like on blocks and posts. I’m excited to just have this in there. Like that’s something we haven’t had in WordPress. So yeah, that’s. I think I would pick that as my favorite. And then instead.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Are you getting excited about the new blocks?</p>\n\n\n\n<p><em>Ellen Bauer: </em>Oh, yes, new blocks as well. So the accordion, it’s actually nice to see that come in because we have started using that in WooCommerce for an update on the. Having the tabs for a description, like a product description, additional information and comments in there. So I think I’m a little bit semi proud. Maybe that pushed it, the accordion block into more attention, into Core and then the. I’m not sure if I have the name right. Is it called Sticky? Sticky Sketchy text? Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>No, Stretchy. Stretchy.</p>\n\n\n\n<p><em>Ellen Bauer:</em> Stretchy. Stretchy. That makes more sense. Yeah, just that’s from a designer perspective. It’s interesting actually to see that in Core because that’s like just a design tool and a fun kind of block. I love seeing that in Core. Yeah. Just nice to see this kind of more fun not experimental, but like just design tool core blocks coming in and then icons block. Really, really nice to have that. But that’s not like needed, wanted. Oh, no, that’s seven.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, the icons block didn’t make it.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Oh, no. Oh, sorry.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Okay.</p>\n\n\n\n<p><em>Ellen Bauer: </em>We have to wait. Well, next year then we will get more excited. Yeah, I want that so badly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, the icons block as well as the. The block visibility is there as well, but it’s more like the basic kind of feature, the foundation for what’s to come in 7.0. But it’s good to have it in talking about the accordions if you want to kind of get a little bit of a head start on styling accordions. Justin Tadlock just published last week a tutorial on how to style accordions with WordPress 6.9. And he walks you through how to do it in theme JSON and how to do a style variation as well as how to do the pattern for an accordion pattern. So that gives you a head start on updating your theme or your own site with it. </p>\n\n\n\n<p>What’s coming to the developer blog? We have just the editorial meeting yesterday. We just approved a snippet how you can also add structured data to your FAQ accordion. So it gets right into the SEO kind of thing because Google treats the FAQs differently. It kind of does answer question answers quite nicely. So you can make that also with the accordion. And he will publish that probably in about two weeks or three. We’ll see how that comes. Yeah. There’s also on the developer blog where additional theme related things like the border radius, size presets that come into WordPress 6.9 and also I mentioned it, the social icons, custom icons that you want if you want them. Also a tutorial on the developer blog register custom social icons and we have one more that is the how to style forms with theme JSON that comes also with six point nine.</p>\n\n\n\n<p><em>Ellen Bauer: </em>That’s a big one. Oh, that’s cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Very exciting because that’s one of the things you miss that was missing always for themes and our custom icons. Actually I think it’s a bigger feature than you think because that was always for years one of the requests like how do I get my own icon in there? Like, oh, it’s missing. Like maybe certain countries have their big individual icons that were not what kind of icons icons, but tools, social.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I can. Websites. Yeah, yeah, yeah, absolutely.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I remember there was a German one we were always asked for. I don’t remember what it was, but from different communities you get different requests.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. In Germany there was this ext or next or something like that was a social one. Right. But that kind of folded into LinkedIn now. So. All right, I’ll put the links to the developer blog posts into the show notes and so you can all follow along on that. </p>\n\n\n\n<h3 class="wp-block-heading">Gutenberg 22.0</h3>\n\n\n\n<p>And that brings US to Gutenberg 22.0, and Carlos Bravo was the release lead on that and he kind of said that it was a relatively quiet Gutenberg release because it followed the WordPress point release and it normally prioritizes core quality and bug fixes over new enhancements. So we probably get here pretty quickly go through that. </p>\n\n\n\n<h3 class="wp-block-heading">Enhancements</h3>\n\n\n\n<p>Well, I’ll start with the block library changes in the navigation block. You can have a button create a new page, but you create it and then what happened. Now you have a notice that there was a page created and how to find it. So that’s really cool. It’s a quality of life improvement that. Yeah, you only notice that it’s there or that it’s not there, but it’s missing all the time.</p>\n\n\n\n<p><em>Ellen Bauer:</em> And the second one was that breadcrumbs now get support for archives. That was missing, just missing before, Birgit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, so breadcrumbs came in actually with this Release out of experimentation, but it will not make it to 6.9. But the breadcrumbs block is a new block and the archive support was. There were kinds of discussions about how deep does the first version has to go. And now that it’s not getting into 6.9, it just gets. Just ongoing improvements. So it gets into WordPress 7.0.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Yeah, I love that. For blogs, that makes a huge difference.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Absolutely. That’s one thing. Also, when you have a huge site and you have 50 pages or something like that, your visitors most very often get lost. Unless you have additional navigation in there, and breadcrumbs help you so you don’t have to do this all manually and kind of think about how to get back to other places. I really love that. That and that the team actually takes time to get to work on this a little longer. And so the version is actually delightful and not just like an MVP or something like that. Yeah. The next one is that the categories block has a taxonomy CSS class now. So that’s probably only interesting for people that were looking for that and had to do custom CSS to kind of figure that out. But that’s definitely now in Gutenberg 22.0.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I think having CSS classes for pretty specific things from theme author perspective, just helpful. A lot of time to just have that in there. So I like that. The next one was that I think that’s just added an explanation to the fit text feature that it gets just a description is added, that it overrides the default font settings.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So that’s what I wasn’t visible just for users being aware of that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I think so. Yeah. That’s just a mix. Users are aware that sometimes you don’t get the connection, that if you have one option, the other option goes away. Yeah. So.</p>\n\n\n\n<p><em>Ellen Bauer: </em>And I think that helps. So I think yeah, they just added it fit into the container and then overrides your font’s default font setting. That helps to just explain it better.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, absolutely. And just now that we’re talking about it, the stretchy text, they are still not sure if the font size or the font option or separate blocks. So they’re now getting into a variation for 6.9. I have not seen that issue or the pull request actually be merged, but we’ll see if it’s going to be in Release candidate one or it still stays as it is and comes in 5.7, 7.0. Why 5.7? That’s wrong. Yeah. The latest comments block now has an option to display full comments so there were only two versions. One was just the title and then an excerpt. And then now you can have all the full comments displayed in your post template or page template. So that’s also pretty cool.</p>\n\n\n\n<p><em>Ellen Bauer:</em> One additional new update is also in the global styles and actually Birgit had to help me figure that out. Global styles are now, can now be accessed in the post editor. But you need to have. What is it? You need to have Active show template template. Yeah, show template. And it’s like, okay, where is show template Burgundy? Had to help me out with that one. It was under preview.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It was the preview of the test.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So where you, where you look for the tablet and the mobile version of the preview, you also have the show template and I couldn’t find it. And then you get the little icon for global styles.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. And then you can make changes. Yeah, you can make changes to, to your template on the global level, which really helps with. You don’t have to go back and go through the templates and all that. So it’s really interesting. I haven’t really worked with that yet because I didn’t find a need for that. But I, I can see that then all of a sudden post in the template when it says, oh, this is wrong, you just want to go in and make a small change of things. So this is helpful to not have to get out of your post and then have to go into the site editor and the template. And yeah, it’s kind of just a shortcut for.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I think it also builds like having that connection also builds a little bit more awareness for users of the connection between where what a template actually is and that you can. What global styles are that you have that connection of. Oh, the global styles are connected to the template of this post and if I change something there, it’s changed in the post. I think there’s still difficulty for users to understand that connection if the templates are hidden and the global styles are hidden in just the site editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>So that’s a good point.</p>\n\n\n\n<p><em>Ellen Bauer: </em>It just builds that connection.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>That’s a good point. Yeah. Thank you. I haven’t even thought about it, but that helps people figure out because the template, new WordPress users might not have that problem, but long time WordPress users, they never had to deal with templates because it was all, it was all something that the theme developer would do for them and they were just using it. But now that they have control over it, they also kind of need to be aware what they’re doing with it. And the enhanced template management is Also part of it, that it needs to be a little bit less confusing. And also follow some. Some things that they say if I change something on a template, I don’t want it to go public without me knowing. So I want a draft section there and keep the other template going until the other one, the new one is finished. So that is something that comes with enhanced template management and I’m really looking forward to that.</p>\n\n\n\n<p><em>Ellen Bauer:</em> That will be exciting also to make templates more exciting to play with because. Yeah, I think there’s still an amazing amount of confusion of what a template versus a page actually is. So just if users play more with custom templates and build their own, I think that builds more awareness of that. The difference between these two.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, definitely. Yeah. So I think one of the last things that we want to talk about here is the. That the math block, which is a new block coming to 6.9. Yeah. Yeah. I’m love it. I actually was in school, I had all these big formulas to talk about. To write and. Yeah. And I was never kind of thinking, oh, I could do a blog post about things that. Because I had no way of knowing how to do the formulas. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer: </em>And you can’t really output them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And they follow the mathwork, follows latex formatting, which is the math kind of language, and then puts it into your site. And now it also. It’s now enabled. Horizontal scrolling is now enabled because those formulas can be really, really long. And so you can kind of have a horizontal scrolling on your formula so you don’t have to kind of put line breaks in there where no line breaks. I want that.</p>\n\n\n\n<p><em>Ellen Bauer:</em> I want to start a blog to blog about math. I was never good at math, but I always. It’s admiring too. I love it. So maybe we should all start blogging about math now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Yeah.</p>\n\n\n\n<p><em>Ellen Bauer:</em> Problems.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Math problems. Yeah. Especially fractions and all that kind of. What was it? Five. You’re very long.</p>\n\n\n\n<p><em>Ellen Bauer: </em>So we need the scrolling.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, we can do the scrolling. Yeah.</p>\n\n\n\n<h3 class="wp-block-heading">Experiments</h3>\n\n\n\n<p>And I’m gonna scroll further through the changelog and I’m stopping at the experiments because the real time collaboration experiment is still on in Gutenberg and we talked about it, but there have also been some changes now. And one is that it’s supporting synced post data and it also the YJS import is actually behind the experimental flag, which is actually a code quality thing. And they implemented CRDT persistence for collaborative editing. And that just means that’s the. The saving of your immediate changes and then the sync part that works persistently on your collaborative editing plane. It’s a really complicated thing to do. But they seem to have figured it out with that library, the YJS and Kevin, who is the maintainer of that, was part of the initial MVP of the collaborative editing and now. Yeah, so it’s really cool. </p>\n\n\n\n<p>And you need to go install 2020.0 Gutenberg plugin and then go to the Gutenberg menu item and enable the look at the experiments page and enable real time collaboration. So there are a few steps there to get to that, but that’s good. So it all stays behind the experimental flag as long as it’s in development. Good. </p>\n\n\n\n<h3 class="wp-block-heading">What’s in Active Development or Discussed</h3>\n\n\n\n<p>So for the developers amongst you listener, there is. I’m sharing an issue about the version 2 of the build WordPress scripts where Riad Benguella, one of the lead architects of Gutenberg has opened this issue about kind of making scripts a little bit more flexible and also have the point that it comes easier and feels a little bit more simple. But that’s all is good. Good goals I would say but I think the technology is a little bit more complicated. But I will share that for all the developers on the show or who listen here to check out because Riad needs people who build plugins and have a build process and use the WordPress scripts to actually test the version 2 so they can catch all the edge cases and all the use cases before they actually migrate that all over. So that’s my thing. Alan, is there something that you want to remind people about upcoming events or releases.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Actually I can’t think of anything at the moment.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So if people want to connect with you, where would they find you on the.</p>\n\n\n\n<p><em>Ellen Bauer: </em>I’m definitely on the Slack WordPress Developer Slack or on social. I think I’m moving more and more to Blue Sky.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Okay.</p>\n\n\n\n<p><em>Ellen Bauer: </em>And yeah also on X and there and YouTube is like a thing I want to be more present and add more content to. So yeah, I have a YouTube channel. I think you can find me just under my name on all of these or maybe Elmer studio on the YouTube. I’m not sure. I think both is possible.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay. Yeah I will share share this all in the show notes and as always. Oh I wanted to announce something. Sorry on November 13th. That’s next week. If you listen to this over the weekend you get the chance to see the developer hours come back to the online workshops on Learn on Meetup and JuanMa and Jonathan Bosinger are going over the developer parts of WordPress 6.9 one is the Data Views and Data Forms and Fields API. The other one is the Abilities API and they might even be covering Interactivity API, seeing what kind of time they have. But that’s on meetup on November 13, just to let you know.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes. As always, the show notes will be published on GutenbergTimes.com/podcast. This is episode 124. 124. And if you have questions and suggestions or news you want us to include, send them to <a href="http://changelogutenbergtimes.com">changelogutenbergtimes.com</a> that’s <a href="http://changelogutenbergtimes.com">changelogutenbergtimes.com</a> and if you want to leave a review on Apple or podcast or Pocketcast or any other of your favorite podcast, only.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Five star, of course.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, I, I take anyone. Yeah, that, that’s kind of how I connect with the listeners and if you can improve.</p>\n\n\n\n<p><em>Ellen Bauer: </em>But you deserve the best.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, thank you. Thank you. I think so. But yeah, maybe other people have a different opinion and my, my opinion only counts when I’m home alone. So. Yeah. So thanks everyone. And until the next time, be well. And we see we hear each other just before Thanksgiving. And thanks to Ellen Bauer for coming to us.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Thank you. Bye, everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Take care.</p>\n\n\n\n<p><em>Ellen Bauer: </em>Bye. Bye.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 09 Nov 2025 13:22:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"Matt: Ben on Bubbles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150519";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://ma.tt/2025/11/ben-on-bubbles/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:181:"<p>Check out Ben Thompson of Stratechery (one of the most valuable subscriptions) on <a href="https://stratechery.com/2025/the-benefits-of-bubbles/">The Benefits of Bubbles</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 09 Nov 2025 04:45:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:117:"Gutenberg Times: State of the Word, WordPress 6.9, Forms styling, Interactivity API, and more — Weekend Edition 348";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://gutenbergtimes.com/?p=42665";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:23797:"<p>Hi there, </p>\n\n\n\n<p>Next week is Release Candidate 1 week! Subscribe to the <a href="https://make.wordpress.org/core/">Make Core Blog</a>, if you haven’t yet, to get all the Dev Notes and the Fieldguide notifications. “String freeze” is this state of the release called until the final release on December 2, 2025. It’s also the start of the last four weeks when the wonderful translators of the <a href="https://make.wordpress.org/polyglots/teams/">Polyglots team</a> work to bring the new version to many dozens of languages. </p>\n\n\n\n<p>This week was busy, too, though. I hope you enjoy all the good things below.</p>\n\n\n\n<p>Yours, <img alt="💕" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png" style="height: 1em;" /><br /><em>Birgit</em></p>\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<nav class="wp-block-table-of-contents"><ol><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/#0-word-press-release-information">Developing Gutenberg and WordPress</a><ol><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/#wordpress-6-9">WordPress 6.9</a></li></ol></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/#0-p">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/#2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-forms-styling-interactivity-api-and-more-weekend-edition-348/#3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</a></li></ol></nav>\n</div></div>\n</section>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%"></div>\n\n\n<p>WordPress 6.9 is not the only major WordPress event on <strong>December 2, 2025</strong>. On this day, <strong>Matt Mullenweg</strong>‘s annual keynote, <strong><a href="https://wordpress.org/state-of-the-word/">State of the Word</a></strong>, will be livestreamed from San Francisco, CA. It will take place around noon Pacific Time and will be recorded so the other half of the World can watch it on the rerun, so to speak. Being there in person is also possible with limited seating. You can request a ticket on the landing page. You might find a watch party near you or you can register your own party. </p>\n\n\n\n<figure class="wp-block-image size-large"><a href="https://wordpress.org/state-of-the-word/"><img alt="Matt Mullenweg announced Gutenberg Roadmap at WordCamp Europe 2018" class="wp-image-11856" height="435" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2019/07/WordCamp-Europe-2018.jpg?resize=652%2C435&ssl=1" width="652" /></a></figure>\n\n\n\n<h2 class="wp-block-heading" id="0-word-press-release-information">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Carlos Bravo</strong> released Gutenberg 22.0, and in his post <a href="https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/"><strong>What’s new in Gutenberg 22.0? (5 November)</strong></a>, he noted “Typically, the Gutenberg release following a WordPress point release focuses on core quality and bug fixes over new enhancements. As such, this will be a relatively quiet release.” He highlighted two things, both already slated for WordPress 7.0 and later. </p>\n\n\n\n<ol class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/#real-time-collab-post-meta">Real-time Collaboration: Post Meta Synchronization</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/11/05/whats-new-in-gutenberg-22-0-05-november/#new-theme-package">A new theme package</a></li>\n</ol>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Anne McCarthy</strong> published an <a href="https://make.wordpress.org/core/2025/11/06/update-on-phase-3-2025/"><strong>Update on Phase 3: Collaboration efforts (Nov 2025)</strong></a> and noted that WordPress Phase 3 focuses on making teamwork easier.</p>\n\n\n\n<ul class="wp-block-list">\n<li>Real-time collaboration lets multiple authors edit content simultaneously without conflicts. </li>\n\n\n\n<li>Block Notes, arriving in WordPress 6.9, allows users to add comments directly on content blocks. </li>\n\n\n\n<li>Behind the scenes, WordPress is rebuilding admin screens with new DataView and DataForm tools, which organize and display information better while letting developers customize them easily across different admin pages.</li>\n</ul>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Rae Morey</strong> expands on this update in her article, <a href="https://www.therepository.email/real-time-collaboration-flagged-for-wordpress-7-0-amid-ongoing-technical-challenges"><strong>Real-Time Collaboration Flagged for WordPress 7.0 Amid Ongoing Technical Challenges</strong></a> and includes additional information about the VIP plugin as well as this year’s progress.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Ellen Bauer</strong> joined me from New Zealand to record the next podcast episode with me Gutenberg Changelog #124. We talked a lot about WordPress 6.9, WordCamps, Block Themes and more. It’ll arrive at your favorite podcast app over the weekend. </p>\n\n\n\n<figure class="wp-block-image size-full"><img alt="Gutenberg Changelog 124 with Ellen Bauer and Birgit Pauli-Haack " class="wp-image-42695" height="185" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-07-at-18.56.39.png?resize=652%2C185&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">\n<p><img alt="🎙" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png" style="height: 1em;" /> The latest episode is <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a> with <strong>Ellen Bauer</strong>, project lead at Automattic. </p>\n\n\n\n<figure class="wp-block-image size-full is-style-no-vertical-margin"><img alt="Gutenberg Changelog 124 with Ellen Bauer and Birgit Pauli-Haack" class="wp-image-42695" height="185" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-07-at-18.56.39.png?resize=652%2C185&ssl=1" width="652" /></figure>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h3 class="wp-block-heading" id="wordpress-6-9">WordPress 6.9</h3>\n\n\n\n<p><a href="https://make.wordpress.org/core/2025/11/07/wordpress-6-9-beta-4/"><strong>WordPress 6.9 Beta 4</strong></a> is now available for testing. As always, the post shows you four different ways how you can start with your testing sessions.</p>\n\n\n\n<p>Contributors decided on punting the <em>enhanced template management</em> features to WordPress 7.0. A few issues surfaced during testing sessions that can’t be resolved in the remaining time before string freeze with Release Candidate 1. </p>\n\n\n\n<p>WordPress 6.9 Release Candidate 1 is scheduled for November 11, 2025, and so are the Dev Notes, updates for developers about the relevant changes: </p>\n\n\n\n<ul class="wp-block-list">\n<li>Interactivity API</li>\n\n\n\n<li>Abilities API</li>\n\n\n\n<li>Block Bindings API</li>\n\n\n\n<li>Streaming Block Parser </li>\n\n\n\n<li>Modernizing UTF-8 support</li>\n\n\n\n<li>Updates to the HTML API</li>\n</ul>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>JuanMa Garrido</strong> and <strong>Jonathan Bossenger</strong>, developer advocates at Automattic, invite you to join them for a Developer Hour: <a href="https://www.meetup.com/learn-wordpress-online-workshops/events/311854653/"><strong>WordPress 6.9: developer updates</strong></a> on <strong>November 13, 2025, at 10 am UTC</strong> – It’s a bit early for US timezone’s though. The session will be recorded and appear shortly after on WordPressTV. </p>\n\n\n\n<figure class="wp-block-image size-large"><a href="https://www.meetup.com/learn-wordpress-online-workshops/events/311854653/"><img alt="" class="wp-image-42709" height="576" src="https://gutenbergtimes.com/wp-content/uploads/2025/11/Devhours-1024x576.avif" width="1024" /></a></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>Styling form elements with the Block editor becomes much easier. <strong>Justin Tadlock</strong> posted a tutorial on the WordPress Developer Blog on <a href="https://developer.wordpress.org/news/2025/11/how-wordpress-6-9-gives-forms-a-theme-json-makeover/"><strong>How WordPress 6.9 gives forms a theme.json makeover</strong></a>. WordPress 6.9 introduces theme.json support for form styling on text inputs and select dropdowns, enabling designers to apply border, color, shadow, and spacing properties globally. However, focus states, labels, checkboxes, and other form elements still require custom CSS. This is just the beginning. Contributors are working on releasing more form styling options in the future. </p>\n\n\n\n<p>Other articles on WordPress 6.9 features to come: </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/">Styling accordions in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/">Border radius size presets in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/">Registering custom social icons in WordPress 6.9</a></li>\n</ul>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Dave Smith</strong>, core contributor on Gutenberg, explains in his video <a href="https://www.youtube.com/watch?v=2F9jWikYkec"><strong>WordPress 6.9 FIXES Navigation Links</strong></a> the main change to the Navigation block in WordPress 6.9. Now the navigation links are dynamic and adopt automatically when you change a slug. </p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<h2 class="wp-block-heading" id="0-p">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Steve Burge</strong>, Publish Press, <a href="https://bsky.app/profile/steveburge.com/post/3m4tk5cjpks22">announced</a> the new version of <a href="https://wordpress.org/plugins/advanced-gutenberg/"><strong>Gutenberg Blocks</strong></a> (v 3.5.2). It brings a new feature to the block editor. “You can just create your own styles for any block.” A socalled Style builder is now available to create these style all no-code.</p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-42691" height="366" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/PublishPress-Block-Style-builder-edited.jpg?resize=652%2C366&ssl=1" width="652" /></figure>\n\n\n\n<p><strong>Velda Christiansen</strong>, member of the training team and support engineer at Automattic, held another workshop to teach WordPress users about <a href="https://wordpress.tv/2025/11/04/landing-pages-posts-more-strategies-for-a-stronger-site/"><strong>Landing Pages, Posts & More: Strategies for a Stronger Site</strong></a>. It was a workshop on WordPress content strategies, demonstrating how to create effective landing pages through template customization. Christiansen addressed attendees’ technical questions and concluded by discussing hosting, email strategies, monetization options, and resources for further learning.</p>\n\n\n\n<h2 class="wp-block-heading" id="2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Iliana Mustafa</strong>, Digital Marketing Manager at HumanMade, shared by <strong><a href="https://humanmade.com/full-site-editing/building-smarter-not-harder-why-we-embraced-fse-for-our-own-website-redesign/">Why we embraced FSE for our own website redesign</a></strong>. “One of the biggest wins of the redesign has been how much ownership our marketing and content team now has over the site.” She wrote. </p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Johanne Courtright</strong> addressed a challenge with forms: providing styling controls for Gravity Forms in the block editor. In her blog post <a href="https://groundworx.dev/resources/making-gravity-forms-inputs-play-nice-with-block-themes/"><strong>Making Gravity Forms Inputs Play Nice with Block Themes</strong></a>, she outlines her method, which includes converting Gravity Forms buttons to standard WordPress block buttons using PHP, applying scalable input styling with CSS custom properties, and offering nine color customization options in Gutenberg. This system keeps form input elements intact while enhancing Gravity Forms’ structure, allowing for proportional scaling through font-size changes and easy use as standalone styles or complete plugin integration.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>On the WPTavern Jukebox, <strong>Nathan Wrigley</strong> interviewed <a href="https://wptavern.com/podcast/192-joshua-bryant-on-how-dow-jones-is-supercharging-wordpress-editorial-workflows"><strong>Joshua Bryant on How Dow Jones Is Supercharging WordPress Editorial Workflows</strong></a>. They discussed how Dow Jones decoupled Gutenberg from WordPress Admin, embedding it into a standalone React application to accelerate breaking news publication. Bryant explained that Dow Jones operates Wall Street Journal, Barron’s, and MarketWatch on WordPress Multisite but needed faster editorial workflows for time-sensitive content. He emphasized that discovering WordPress’s global WP object handling was challenging but revealed how well-engineered WordPress truly is.</p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;">\n<p><strong> <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/" rel="noreferrer noopener" target="_blank">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/">2020</a> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/">2021</a></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/">2022</a></strong></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023">2023</a></strong> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/"><strong>2024</strong></a></p>\n</section>\n\n\n<h2 class="wp-block-heading" id="3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p><strong>Carlo Daniele</strong>, Kinsta, helps you <a href="https://kinsta.com/blog/wordpress-interactivity-api/"><strong>unlock new possibilities with the WordPress Interactivity API</strong></a>. “This API enables you to create blocks that react in real time to user interactions, allowing you to create rich user experiences and make your sites attractive, dynamic, and engaging.”, he wrote Daniele guides readers through the WordPress Interactivity API by explaining its core concepts, breaking down technical file structures, and then demonstrating practical application by building an interactive shopping cart block from scratch. He moves from theory to hands-on implementation with code examples and visual aids. <br /></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>JuanMa Garrido</strong> introduced <a href="https://juanma.codes/2025/11/02/a-dataviews-powered-explorer-for-the-abilities-api/"><strong>A DataViews-powered explorer for the Abilities API</strong></a> on his personal blog. He created an Abilities Dashboard prototype that combines WordPress’s Abilities API with DataViews, a React component system. </p>\n\n\n\n<p>The <a href="https://make.wordpress.org/ai/2025/07/17/abilities-api/">Abilities API</a> allows plugins to describe their capabilities in a machine-readable format for AI tools and automation. Building on <a href="https://github.com/karmatosed/abilitiesexplorer"><strong>Tammie Lister’s Abilities Explorer plugin</strong></a>, Garrido developed a client-side dashboard using DataViews, aligning with modern WordPress admin interfaces. His project demonstrates how DataViews can effectively display and interact with Abilities data, serving as a reference for this emerging intersection of AI and data management in WordPress.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Troy Chaplin,</strong> web developer from Ottawa, shared the <a href="https://developer.wordpress.org/news/snippets/limiting-allowed-blocks-without-breaking-the-site-editor/" rel="noreferrer noopener" target="_blank"><strong>Snippet: Limiting allowed blocks without breaking the Site Editor</strong></a> on the WordPress Developer Blog. “By scoping the <code>allowed_block_types_all</code> filter to post types and editor context, you keep the best of both worlds: editorial consistency for authors and full creative control for designers. A small change, but one that can save hours of confusion down the road.” he wrote in his conclusion. </p>\n\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;">\n<p><strong><a href="https://gutenbergtimes.com/need-a-zip-from-master/">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href="https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href="mailto:pauli@gutenbergtimes.com">Email me </a>with your experience</p>\n\n\n\n<p><img alt="GitHub all releases" src="https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge" /></p>\n</section>\n\n\n<p class="has-text-align-center has-small-font-size"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href="mailto:pauli@gutenbergtimes.com">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p class="has-text-align-center has-small-font-size">For questions to be answered on the <a href="http://gutenbergtimes.com/podcast">Gutenberg Changelog</a>, <br />send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<p>Featured Image: Image generated with <a href="https://jetpack.com/ai/">Jetpack AI assistant. </a></p>\n\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n\n\n\n<p class="has-text-align-left"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action="https://gutenbergtimes.com/feed/" autocomplete="on" class="wp-block-newsletterglue-form ngl-form ngl-portrait" method="post"><div class="ngl-form-container"><div class="ngl-form-field" style="margin-bottom: 25px;"><label class="ngl-form-label" for="ngl_email"><br />Type in your Email address to subscribe.</label><div class="ngl-form-input"><input autocomplete="email" class="ngl-form-input-text" id="ngl_email" name="ngl_email" required="required" style="border-radius: 21px;" type="email" /></div></div><button class="ngl-form-button" style="background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;" type="submit">Subscribe</button><p class="ngl-form-text">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class="ngl-message-overlay"><div class="ngl-message-svg-wrap"><svg fill="none" height="24" stroke="#fff" stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"></polyline></svg></div><div class="ngl-message-overlay-text">Thanks for subscribing.</div></div><input id="ngl_list_id" name="ngl_list_id" type="hidden" value="26f81bd8ae" /><input id="ngl_double_optin" name="ngl_double_optin" type="hidden" value="yes" /></form>\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n</section>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 08 Nov 2025 04:31:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Matt: Kaycee Nicole";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150513";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:36:"https://ma.tt/2025/11/kaycee-nicole/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:409:"<p>Mimi Lamarre at Switchboard Magazine has a delightful long read in <a href="https://www.switchboardmagazine.com/monthly/the-curious-case-of-kaycee-nicole">The Curious Case of Kaycee Nicole</a>, where, in the early days of online communities and blogging, a fake person claimed to have leukemia. The blogging community was relatively small back then, and I recall some of this happening contemporarily. </p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 07 Nov 2025 23:36:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"Matt: Conversation with John Borthwick";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150504";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://ma.tt/2025/11/john-borthwick/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1089:"<p>I’m often on the other side, but it’s such a delight to be an interviewer, I really enjoy it and put a lot of work into coming up with questions and shaping a conversation I think will draw out something novel from the person. Besides the <a href="https://distributed.blog/">Distributed Podcast</a>, I’ve had a chance at events to interview great minds such as Steve Jurvetson, <a href="https://patrickcollison.com/">Patrick Collison</a>, <a href="https://dri.es/">Dries Buytaert</a>, and now John Borthwick.</p>\n\n\n\n<p>We discussed his early investments in Airbnb and Tumblr, what made the NYC tech scene so special back then, and how it has evolved since. We also touched on the recent mayoral race, where Betaworks fits into the city’s tech ecosystem, and delved into one of my favorite topics: the comparison between open-source and proprietary models in AI.</p>\n\n\n\n<figure class="wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 07 Nov 2025 06:45:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"Matt: Post-talk Recs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150494";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://ma.tt/2025/11/post-talk-recs/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:913:"<p>I just got off stage from the <a href="https://luma.com/fy86k4w5">great dev/ai/nyc event with John Borthwick</a>, we had a wide-ranging discussion that we’ll post online soon. We had hundreds of people in the room and hundreds on the waitlist… the energy in NYC is electric! </p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-150495" height="805" src="https://i0.wp.com/ma.tt/files/2025/11/borthwick-mullenweg-768x1024.jpeg?resize=604%2C805&quality=89&ssl=1" width="604" /></figure>\n\n\n\n<p>As a few recommendations from the event, I recommended revisiting the <a href="https://en.wikipedia.org/wiki/Her_(2013_film)">movie Her</a> and <a href="https://en.wikipedia.org/wiki/Culture_series">Iain M. Banks Culture series</a>, John recommended <a href="https://amzn.to/47LYJ7D">The MANIAC about John von Neumann</a>, which I’ll add to my reading queue now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 06 Nov 2025 01:55:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:18;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"WPTavern: #192 – Joshua Bryant on How Dow Jones Is Supercharging WordPress Editorial Workflows";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wptavern.com/?post_type=podcast&p=200562";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:110:"https://wptavern.com/podcast/192-joshua-bryant-on-how-dow-jones-is-supercharging-wordpress-editorial-workflows";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:56442:"<details>Transcription<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, how Dow Jones is supercharging WordPress editorial workflows.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Joshua Bryant. Joshua works at Dow Jones, helping power some of the world’s largest publishing sites, including the Wall Street Journal, Barron’s, and MarketWatch, all on a WordPress Multisite platform.</p>\n\n\n\n<p>His background with WordPress started, as it does for so many, by inheriting a site and slowly peeling back the layers of what the CMS can do, from page building to infrastructure and custom workflows.</p>\n\n\n\n<p>At Word Camp US, he delivered a presentation called Reimagining WordPress Editing: How We Embedded Gutenberg Into Our Product Ecosystem, which digs into how his team decoupled the Gutenberg block editor from WP Admin. And embedded it in a standalone React application, all while keeping content stored in a traditional WordPress database.</p>\n\n\n\n<p>This episode is a journey into why time, down to the second, matters in the publishing world, and how headless solutions can address those needs.</p>\n\n\n\n<p>Joshua explains how editorial workflows were rebuilt so that breaking news can be published, or updated, with lightning fast speeds, removing distractions and page reloads for editors, while retaining the full power and extensibility of WordPress behind the scenes.</p>\n\n\n\n<p>We talk through the technical architecture, planning, editing, and rendering are split into separate applications with Gutenberg customized down to just two or three essential blocks, living outside the typical WordPress environment.</p>\n\n\n\n<p>Joshua talks about the challenge of simulating the global WP object, keeping business logic and proprietary plugins intact, and interacting with the rest API for Instantaneous content publishing.</p>\n\n\n\n<p>If you’re interested in headless WordPress, editorial workflows at scale, or how Enterprise newsrooms leverage open source tech for real world speed, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Joshua Bryant.</p>\n\n\n\n<p>I am joined on the podcast by Joshua Bryant. Hello.</p>\n\n\n\n<p>[00:03:25] <strong>Joshua Bryant:</strong> Hi.</p>\n\n\n\n<p>[00:03:26] <strong>Nathan Wrigley:</strong> Nice to meet you. This is the first time that we’ve ever met. We’re going to be talking today about, well, the Dow Jones website, but also about headless, I guess is probably the best way to sum it up. So strap in. This is going to be a tinfoil hat episode. I am also going to say at the beginning that this is an episode for which I am supremely unqualified. So I hope that you are going to be able to shepherd me and call me out when I ask a silly question. So let’s hope for the best.</p>\n\n\n\n<p>The reason that I’ve got you on is because headless is an interesting subject, there’s that, but also the fact that it’s Dow Jones that you are dealing with, and the profound importance of that. The fact that, of all the websites I can imagine, there’s not many which have that requirement to be alive a hundred percent of the time. So that whole piece is going to fit in as well.</p>\n\n\n\n<p>Before we get into that, would you mind just telling us a bit about you? I mean, we know where you work now, but other than that, tell us about your experience with WordPress and so on.</p>\n\n\n\n<p>[00:04:18] <strong>Joshua Bryant:</strong> Right. So, I mean, I started, I think like most WordPress people started, I inherited a WordPress website knowing nothing about web development at all. And so I struggled my way through Googling, what is DNS? What does that even mean?</p>\n\n\n\n<p>And the WordPress offered me the opportunity to grow, and there’s always something new to learn. So from day one, I started learning about building pages, and then themes, and then plugins. And then I got a job where I was building themes and plugins. And then I got a job where I was really working on the infrastructure behind it.</p>\n\n\n\n<p>As I continue to grow, I keep learning that there’s always another layer to WordPress. And I think I’m getting close to the bottom, but that’s what I thought every layer. So I did a little bit of contributing last year when I was here at WordCamp, and I’m just excited to keep growing and keep learning more about the power that we have in that WordPress environment.</p>\n\n\n\n<p>[00:05:18] <strong>Nathan Wrigley:</strong> Thank you for that. So you’re at WordCamp US, obviously, you’re talking to me, we’re in the same room. Presentation that you did or doing?</p>\n\n\n\n<p>[00:05:26] <strong>Joshua Bryant:</strong> Did.</p>\n\n\n\n<p>[00:05:26] <strong>Nathan Wrigley:</strong> Did. We’ll get to that in a minute. It was called Reimagining WordPress Editing: How We Embedded Gutenberg Into Our Product Ecosystem. I might read some of the blurb in a little bit, but first of all, how did it go?</p>\n\n\n\n<p>[00:05:37] <strong>Joshua Bryant:</strong> I think it went well.</p>\n\n\n\n<p>[00:05:38] <strong>Nathan Wrigley:</strong> Good.</p>\n\n\n\n<p>[00:05:39] <strong>Joshua Bryant:</strong> Yeah. I told the story in the presentation that I teach teenagers a lot. And it was a couple years ago, I’m in the middle of a lesson and I looked down and nobody’s paying attention to me because one of the students had gotten so bored, he had started ripping apart his styrofoam cup and he had been eating it. He was halfway through eating the cup. Halfway through my presentation, I look and nobody had done anything sort of like that. So I felt like the presentation went well, people were paying attention. That’s kind of my benchmark.</p>\n\n\n\n<p>[00:06:08] <strong>Nathan Wrigley:</strong> That’s a good one.</p>\n\n\n\n<p>[00:06:08] <strong>Joshua Bryant:</strong> I think I’ve gotten better.</p>\n\n\n\n<p>[00:06:10] <strong>Nathan Wrigley:</strong> So here’s the blurb. And I won’t do it all, I’ll get maybe through the first paragraph and hopefully, dear listener, it’ll give you some context for what’s going to come in the next 40 minutes, half an hour or so.</p>\n\n\n\n<p>What happens when you take the Gutenberg editor out of WordPress? This talk explores how we decouple the block editor from WP Admin and the Loop, embedding it in a standalone React application to power custom editorial workflows, while still saving to a traditional WordPress database.</p>\n\n\n\n<p>Now there’s a lot in there. And I think that subject would be curious if it was just, you know, the mom and pop website, but the fact that you are actually dealing with, forgive me if I get this wrong, dowjones.com. I don’t know if it is dowjones.com, but it’s certainly the Dow Jones.</p>\n\n\n\n<p>[00:06:50] <strong>Joshua Bryant:</strong> So Dow Jones as an entity, a fun fact, they no longer own the Dow Jones market. They sold it. But they do own a lot of publishing websites. So they own websites like the Wall Street Journal, Barron’s, Mansion Global. We’ve purchased more, I don’t know if I can say any of the other names right now, but we own all of those entities and so they are on a Multisite.</p>\n\n\n\n<p>And so right now our publishing system, all of our editors publish from those websites in our WordPress Multisite environment. And all of that, we can talk about headless, but all of that actually goes into this all knowing database in the sky, where our front end systems pick them up. So WordPress itself doesn’t render wsj.com. We have a mobile team that does that. One way, we have a web team that does it a different way, and they all read from this all knowing database.</p>\n\n\n\n<p>But we use WordPress and our editors use it, we call it NewsPress, and we use it to publish all of our content. Our editors find it easy to use, and we like all of the features that WordPress offers. So we’ve leveraged the power of WordPress to do those things.</p>\n\n\n\n<p>[00:08:03] <strong>Nathan Wrigley:</strong> Some of those names were really enormous entities. Did you say the Wall Street Journal, or?</p>\n\n\n\n<p>[00:08:08] <strong>Joshua Bryant:</strong> Yeah.</p>\n\n\n\n<p>[00:08:09] <strong>Nathan Wrigley:</strong> Yeah, I mean, these are ones that I’ve heard of and I don’t live in this country, so that’s pretty profound. So I guess they’ve got an incredible appetite for traffic, but also an incredible need to be there a hundred percent. Not this 99.8% of the time. This is 100% of the time, I’m guessing.</p>\n\n\n\n<p>[00:08:26] <strong>Joshua Bryant:</strong> Right. And the topic that we’re going to talk about today, and it applies to all news, but when there’s breaking news, being first to market matters. Being 10 seconds ahead of your competitor when Taylor Swift gets engaged is an important amount of time when you’re sending out a push notification. Or in the case of MarketWatch, when there are going to be fluctuations in the market and we have editors listening in on board meetings, being able to send that information out and get that to our readers as soon as possible is the most important thing to our publications.</p>\n\n\n\n<p>[00:08:59] <strong>Nathan Wrigley:</strong> So is this a project, or an infrastructure, let’s go with that, that you inherited or were you bought in to build this?</p>\n\n\n\n<p>[00:09:06] <strong>Joshua Bryant:</strong> Both. In the most simple terms, I can explain it, we’ll say we have three systems. We have a React based planning tool. We have a WordPress editing tool, where we actually write the articles, save the content, control user permissions, lock and unlock posts. And then we have the front end that then takes what they publish and display it in any way that they need across all of our publications. So we have planning, editing and rendering. And those are three completely separate buckets that have been there for quite some time.</p>\n\n\n\n<p>[00:09:43] <strong>Nathan Wrigley:</strong> So we’re at a WordPress event and we’re surrounded by WordPressers, so it is kind of a bit of a bubble that we’re in at the minute. Everybody in this hall, in this place, kind of would understand what you’ve just described. However, dear listener, hopefully I’m not besmirching you, but there’s going to be a bunch of people listening to this who, what you just said went completely over their head.</p>\n\n\n\n<p>They download WordPress, they pay a few dollars a month to pop it on a host that they believe is reliable, and they know there’s a database somewhere but they’re kind of using the front end. And that’s all that they need to concern themselves about. Just explain in more detail what you just said. This React, this editing and this front end. What even is that?</p>\n\n\n\n<p>[00:10:20] <strong>Joshua Bryant:</strong> Right. I mean you can think of them as three separate applications on your phone. You might use one app, like your calendar, to plan things out. That’s what our planning tool is. It essentially lets us coordinate with each other and say, hey, we need to have a steady stream of stories. And we also want to attach, our photographers are going to put some images in those stories, so we might add that to the calendar invite description. Those are the kind of things we do in the planning tool.</p>\n\n\n\n<p>And then in the WordPress tool, it’s a lot like what anybody does in WordPress. We’re writing posts, we’re adding images, and in the case of the newsroom, they might do a couple things around SEO, and add some metadata that we want to show up on Google. And I think everybody should be familiar with creating posts.</p>\n\n\n\n<p>And then a completely different system picks it up and says, okay, I’m going to show everybody what it looks like. And that part is not really important because that’s the headless part. But you don’t really need to understand that there’s another system that does this thing differently, to understand what we’re going to talk about as far as, we moved our editor into, let’s say, a very simplified tool.</p>\n\n\n\n<p>One example that I like to think about is, when we have done this project, we did it very specifically for the newsroom’s needs. So we tailored it very, very specifically. But I like to think of the applications of, I like to collect people who have great quotes. When I hear a great quote, I’m like, oh, I need to write that down. I don’t want to forget it. I like to think of it as, I want to pull up something like Twitter or Bluesky, and I want to just type in a field, hit send, and then it publishes a post on my WordPress dashboard. It’s a custom post that says, here’s a notable tweet. And it posted it.</p>\n\n\n\n<p>That way I don’t lose that and I can have it in my WordPress, which is where I keep most of like, I keep my recipes, and my notes, and my blogs, and everything that I want to remember. It’s like my personal online notebook. But now we’ve created a mechanism where we can kind of take that and extend it anywhere we want outside of just the WP Editor, and be able to pull something up and say, hey, there’s a different application. You type it in, you hit send, and then it all runs through WordPress itself.</p>\n\n\n\n<p>[00:12:48] <strong>Nathan Wrigley:</strong> What are the reasons why that needed to be done? So just sort of going backwards a bit, really. Obviously that is what is possible, but why is just a default version of WordPress on red hot hosting not something that is suitable in this situation? What affordances does it get you? What performance does it buy you? What UI does it allow you to create that makes this possible? And I think you said you built your own proprietary system. What did you call it, press news or news?</p>\n\n\n\n<p>[00:13:15] <strong>Joshua Bryant:</strong> NewsPress.</p>\n\n\n\n<p>[00:13:15] <strong>Nathan Wrigley:</strong> NewsPress, sorry. Wrong way around. So, why? What are the limitations in WordPress that were unignorable that required this?</p>\n\n\n\n<p>[00:13:22] <strong>Joshua Bryant:</strong> I don’t think there were necessarily limitations. We are talking about shaving seconds off the editor process. And so there are a lot of things in our WordPress system that we want editors to do before they publish a normal article. We want them to have certain SEO titles listed. We want them to have fallback images for headline videos. We are okay with the way everything operates inside of WordPress, but we’re talking about shaving seconds off by putting it, first of all, in a tool that the editors are already in. They’re planning their day, they’re planning their month in the planning tool. And it’s a single page application. There’s no page reload. It’s all in React. There’s no calling a database that we have to worry about.</p>\n\n\n\n<p>We’re literally just pulling up the Gutenberg editor, typing out a breaking news or a market watch, we call them pulse, some update that we need to get to our readers. And if there’s a bunch of information that comes in, we need to be able to hit 10 posts with as limited information as possible and get it to publish all the way to the front end, and do 10 in a row as quickly as possible.</p>\n\n\n\n<p>[00:14:37] <strong>Nathan Wrigley:</strong> So the raison d’etre there then is time. It’s all about shaving seconds off because in the industry that you are in, if you’re five seconds late, you might as well not publish.</p>\n\n\n\n<p>[00:14:46] <strong>Joshua Bryant:</strong> Right. It’s time, and it’s also distraction for our editors. They don’t have the full editor experience anymore. They don’t have the sidebar, and all the tabs because we have a lot of stuff in our editor.</p>\n\n\n\n<p>[00:14:58] <strong>Nathan Wrigley:</strong> Okay, so in this three step process where you’ve got the React, and we’ll talk about ripping out Gutenberg and pushing it to this React app in a minute. But we’ve got the React app where the planning is done, then presumably when the planning is finished, and I’m going to use the word publish, maybe it’s not publish, but you hit a button, presumably that pushes it down the funnel towards the WordPress install, which then pushes it to the front end. So there’s this kind of like one way cycle.</p>\n\n\n\n<p>But the idea of the React, Gutenberg bit is that it’s fast, really fast and distraction free. There’s just no clutter. It’s just, you’re familiar with that interface. Because with the best one in the world, WordPress, there’s a lot of things going on. When you click publish, quite a lot can happen at that moment. You don’t want any of that. You just want publish. Boom. Done.</p>\n\n\n\n<p>[00:15:39] <strong>Joshua Bryant:</strong> Right.</p>\n\n\n\n<p>[00:15:40] <strong>Nathan Wrigley:</strong> Okay. So you’ve pulled the Gutenberg editor out of WordPress. And, okay, I think it’s important at this point to say, Gutenberg is an open source project. We’re mostly familiar with it sitting inside of WordPress, but it doesn’t belong there. And you’ve put it inside of this React app. How have you customised it to get it there, and what have you stripped out, what have you added in?</p>\n\n\n\n<p>[00:16:01] <strong>Joshua Bryant:</strong> Yeah, great question because part of the reason we decided to continue to use Gutenberg instead of some other React tool is that we’ve already invested so much time and effort into the business logic around our custom plugins and around the workflow, and we’ve put so much into our WordPress environment that we asked ourselves, how can we maintain all the equity we have in WordPress and leverage the power of WordPress, but put it in a slightly different place where we can take care of all of our editor’s needs? And so that was really the driving factor behind, okay, we’re going to move it here, but we still want all the things we have there.</p>\n\n\n\n<p>And so what we did is we limited the number of blocks. While we might have most of the Core blocks in our regular editor, we have the paragraph and list block in our planning.</p>\n\n\n\n<p>[00:17:01] <strong>Nathan Wrigley:</strong> That’s it?</p>\n\n\n\n<p>[00:17:01] <strong>Joshua Bryant:</strong> Yeah, because that’s all we needed. That’s all we needed. And we have a couple custom plugins that we’ve moved into our planning tool. For instance, in MarketWatch, if you’re writing a story about Target, you’re going to want to tag the Target company, and we call it tickers, the stock tickers. And that lets our front end know, hey, this is a story about Target, let’s put the real time stock ticker information into this article, so it’s not like, when I wrote it a week ago, this is what the the stock ticker looked like.</p>\n\n\n\n<p>It’s, when I’m looking at it right now, this is the real time stock ticker data. We put a lot of time and effort into building that plugin for WordPress, and so we wanted to find a way to not have to rewrite any of that code, not have to redo any of that work, but take what we’ve already done and just move it to the planning tool and have it work in both locations in the same code base.</p>\n\n\n\n<p>[00:17:55] <strong>Nathan Wrigley:</strong> So I’m just trying to understand what that looks like. So let’s say that I’m in this planning tool. Somehow I get to that planning tool. I don’t know where it lives, whether I’m on a desktop or a website, or an application which lives on Mac OS. I don’t know. I probably don’t need to know, but I’m in it. And it looks like Gutenberg, yeah? I mean it is Gutenberg. Everything’s the same, except you’ve got this tiny limited arrangement of blocks. So paragraph, list, and then a couple of others, bespoke ones which you obviously need.</p>\n\n\n\n<p>So what happens then when I’m doing that planning and then I click, I’m going to use publish again, I don’t know if you’ve overhauled the UI to make it something else, but let’s click publish. What happens at that moment? Where does that go? And how does it fit into the whole flow that we talked about?</p>\n\n\n\n<p>[00:18:36] <strong>Joshua Bryant:</strong> Right. So everything that you do in a normal WordPress editor, you can also do using this thing called the REST API. And they’re just endpoints that exist that you can call to do things like lock a post, save a post, publish a post. And so when we do anything like that inside of our planning tool and we hit publish, it just hits this backend location that says, hey, post number 1, 2, 3, I want you to do what you normally do WordPress, and publish that post for me. And it doesn’t have to load anything inside of WordPress, it just hits that endpoint and WordPress says, well, I know how to publish. Okay, I’m going to publish.</p>\n\n\n\n<p>And we didn’t have to load the page, we didn’t have to hit the WP Admin. It just skips all those steps and says, okay, I’ll publish for you. And then that sends it off downstream and they all do their thing. So it’s essentially the same, we just skip some steps.</p>\n\n\n\n<p>[00:19:34] <strong>Nathan Wrigley:</strong> Yeah. So again, just to emphasise, the whole point of that was to save time.</p>\n\n\n\n<p>[00:19:39] <strong>Joshua Bryant:</strong> Yes.</p>\n\n\n\n<p>[00:19:39] <strong>Nathan Wrigley:</strong> That’s fascinating. That’s fascinating that time is such an important commodity. I’ve never come across a scenario, I mean I just don’t live in that world. I don’t have a scenario in my head where the amount of time it takes to hit publish and wait for WordPress to do its checks and balances and what have you, or load it up and all of that. But those few moments is important enough.</p>\n\n\n\n<p>So you build the React app, it looks like Gutenberg, you hit publish via the REST API, it goes to WordPress, but it misses out all the intermediary things that may happen, and we can get into that in a minute. And then it just hits, it just publishes it immediately.</p>\n\n\n\n<p>[00:20:15] <strong>Joshua Bryant:</strong> Right.</p>\n\n\n\n<p>[00:20:15] <strong>Nathan Wrigley:</strong> That is fascinating.</p>\n\n\n\n<p>[00:20:16] <strong>Joshua Bryant:</strong> And the great thing about keeping WordPress in the loop there is that if there’s a breaking news article, we do as rapidly as we can. We’re going to publish that article. But now it exists in the WordPress database, and we can go back to it and do all of the things that we normally do, but it’s already published.</p>\n\n\n\n<p>So it’s out there, but now we can go and, just like the regular WordPress editor, we can add images, we can add SEO data, we can do all of those things we’d normally do. We can post updates, but the post is already out there. So we’re no longer in a rush, but we still are going to make that story more robust.</p>\n\n\n\n<p>[00:20:53] <strong>Nathan Wrigley:</strong> So I’m just trying to be clear, because in your, the blurb for your presentation, you used this phrase, which was custom editorial workflows. I think we just went through that. So React app, WordPress, it gets published, we’re on the front end. But then at that moment, any modifications, let’s say, I don’t know, there’s an update, somebody has to modify something about it. At this point, you’re in the middle step. You’re going to the regular WordPress site and you’re updating it in there. Have I got that right? You’re not back the first step.</p>\n\n\n\n<p>[00:21:20] <strong>Joshua Bryant:</strong> Right. We’re doing all of that in the planning tool. And then if you’ve been to some of our websites or I think any news website, you’ll see, last updated, and it’ll give you a timestamp. That’s when you get that notification that, hey, this has been updated. It’s because we’ve gone back into WordPress and we’ve added more information that our readers are going to find interesting or important. And we sent it down and there it goes again. Version two is out.</p>\n\n\n\n<p>[00:21:45] <strong>Nathan Wrigley:</strong> Is this kind of standard practice in the journalism industry to have something akin to this because time’s so important? Or is it something of an affordance that you can have because those publications are already so successful?</p>\n\n\n\n<p>Because I’m imagining it’s not all that cheap to put that together and maintain. Presumably there’s got to be developers surrounding it all the time and making sure it’s updated and kept alive. So I was just curious as to whether or not this is typical or something that you think is pretty unique.</p>\n\n\n\n<p>[00:22:13] <strong>Joshua Bryant:</strong> Well, I’ll tell you this. This is the first time ever in my career that I have tried to Google things and got zero results. So I don’t think that it happens a lot. I think it’s pretty unique. I know our parent company, they own a bunch of other publishing corporations and none of them have done anything like this either. I think this is something that we pioneered and that it’s great, it was very unfortunate for me to try to figure it out.</p>\n\n\n\n<p>[00:22:38] <strong>Nathan Wrigley:</strong> Were there headaches along the way? Was it really quite a challenge? Have you learned things which other people listening to this podcast, they may think, okay, I need to talk to Joshua. I have a similar crisis on my hands. Was there a lot of learning along the way?</p>\n\n\n\n<p>[00:22:51] <strong>Joshua Bryant:</strong> I think the main thing that I learned was that WordPress has a lot of really good documentation for using it the way that it should be used.</p>\n\n\n\n<p>[00:23:01] <strong>Nathan Wrigley:</strong> The normal way.</p>\n\n\n\n<p>[00:23:02] <strong>Joshua Bryant:</strong> Yes. And so if you want to learn how to use WordPress, the documentation’s great. If you want to learn how to misuse WordPress, there is not a lot of good documentation out there. And you’re going to have to read a lot of Trac tickets and GitHub issues and Slack threads and, you know, read through the code.</p>\n\n\n\n<p>And so, yeah, I will say that, pro, WordPress, great at documenting, but if you’re going to do something out of the box like this, you’re going to have to find those alternate sources of documentation, which is just, and how they built it. That was a good lesson and a good learning curve. And I learned a lot about the contributor process through that.</p>\n\n\n\n<p>[00:23:40] <strong>Nathan Wrigley:</strong> Yeah. Oh yeah, I’m sure you did. Did it deliver, or does it deliver in the way that was anticipated at the planning state? So when the stakeholders were sat down and the green light was given to this project, did it come out exactly as expected, or were there things where suddenly you figured, oh, we cannot do this particular thing? Maybe it worked out better than you had originally intended.</p>\n\n\n\n<p>[00:24:00] <strong>Joshua Bryant:</strong> Yeah, so actually, we rolled it out for MarketWatch first and it worked, and they have not complained, at least to me about it. But it was so good that they rolled it out to wsj.com next, and we developed it in such a way that it would be very extendable. And when they rolled it out to wsj, I didn’t know about it. So it really was a seamless transition. Now we have two of our biggest newsrooms using it, and I think we’re going to roll it out to Baron’s next. I don’t anticipate having to do any work for that either.</p>\n\n\n\n<p>[00:24:32] <strong>Nathan Wrigley:</strong> I find this so curious. I think you maybe made yourself fairly indispensable.</p>\n\n\n\n<p>[00:24:37] <strong>Joshua Bryant:</strong> I wouldn’t go that far.</p>\n\n\n\n<p>[00:24:38] <strong>Nathan Wrigley:</strong> It certainly sounds it. So let’s get into the sort of technical bits and pieces about it, because I’m reading, cribbing from my notes here. You mentioned in the talk, simulating the global WP Object. And whilst that sounds interesting and is no doubt complicated, what are the critical components of the doing that? How did you replicate it? What was the biggest challenge? Stripping out the editor and making it work somewhere else.</p>\n\n\n\n<p>[00:24:59] <strong>Joshua Bryant:</strong> Well, that’s one of the great things that I learned about the way WordPress works behind the scenes. When you’re building plugins, you import a lot of WordPress packages that do very specific things. And my assumption was always, when I build my code, it’s putting all of those packages into the code in one file and then ships it to my website. And that’s how it works.</p>\n\n\n\n<p>That’s not exactly how it works. The bundle process for WordPress actually pulls all of those scripts out for speed and efficiency. You don’t want 20 plugins to have 20 different versions of the same code. And so they’ve pulled all of that out and it just uses one version of that code. Whatever version of WordPress you’re on, if I’m on six three, it’s going to run the six three version of all of the scripts.</p>\n\n\n\n<p>And so when we moved our code over into the planning tool, there is no six three in React. It doesn’t know that these scripts are supposed to be there, and so it was referencing this global object, this Global WP. And if you’re familiar with doing things in the console, it’s, you type wp.data.select Core Editor, and you get a bunch of stuff back, right? It doesn’t exist in React or in Gutenberg. And so that was our first hurdle.</p>\n\n\n\n<p>What WordPress is doing for us, building this object that all the code runs through, we’re going to have to manually do in React. We’re going to have to import those packages and set them at the global namespace level just so that the WordPress code will run.</p>\n\n\n\n<p>[00:26:38] <strong>Nathan Wrigley:</strong> And how challenging was that?</p>\n\n\n\n<p>[00:26:40] <strong>Joshua Bryant:</strong> Well, discovering it was the challenge. Implementing it was the easy part. We went through many iterations of, why is it not working? How will it not communicate? Before we realised that WordPress is doing this for us. And then once we had that realisation, the implementation was rather simple.</p>\n\n\n\n<p>[00:26:59] <strong>Nathan Wrigley:</strong> To me, that would’ve been quite a frustrating process. Going backwards and forwards there. Why isn’t it working? Why isn’t it working? And then sort of suddenly realise, oh, it’s not working because, as you’ve just described. Yeah, that’s really interesting.</p>\n\n\n\n<p>But you are happy that you went through that process. There’s no bit at which you thought, okay, we’re backing out. We’re not going to use WordPress. We’re going to use some sort of custom CMS that you can buy off the shelf, any of that.</p>\n\n\n\n<p>[00:27:22] <strong>Joshua Bryant:</strong> Right. Oh yeah. I mean, if you had asked me a week into my back and forth, I would’ve said no. And it gives me a deeper understanding of WordPress too, and a deeper appreciation for the decisions that the contributors made when they built it to make it efficient. I never thought about how the WP build process helps developers build efficient websites, even if they don’t really know what’s going on. You type in WP scripts build, and then a lot of things happen. But the developers don’t need to know everything that happens. It just happens. And that’s great for developers.</p>\n\n\n\n<p>But when I went that step further and I’m like, why is this happening? I went down the rabbit trail of figuring out what does WP scripts build do, and how can I break it? I want to do something else with it. And then coming all the way back to realising, no, they’re doing it the right way, the good way. And now that I understand what it does, I can design our system to be in alignment with that.</p>\n\n\n\n<p>[00:28:26] <strong>Nathan Wrigley:</strong> Yeah, it sounds like you kind of went full circle there.</p>\n\n\n\n<p>[00:28:28] <strong>Joshua Bryant:</strong> Oh, I did.</p>\n\n\n\n<p>[00:28:28] <strong>Nathan Wrigley:</strong> Yeah, that’s really interesting.</p>\n\n\n\n<p>[00:28:30] <strong>Joshua Bryant:</strong> Circle, spiral.</p>\n\n\n\n<p>[00:28:31] <strong>Nathan Wrigley:</strong> Yeah, yeah, I’m sure there was a few spirals. So without giving anything away, how do your stakeholders that need to be a part of the first stage, the planning tool, how do they get to that? Can they access that with their phones? Can they access that with their desktop? How do they interact with that?</p>\n\n\n\n<p>[00:28:46] <strong>Joshua Bryant:</strong> Yes, two things are important for us. We want to be able to access it in the office, on a desktop, plan out things. But we also want our reporters to be able to give us breaking news in the field, wherever they are.</p>\n\n\n\n<p>[00:29:01] <strong>Nathan Wrigley:</strong> Right. That was where I was going with that, yeah.</p>\n\n\n\n<p>[00:29:03] <strong>Joshua Bryant:</strong> Right. And so that is one driving factor for the decisions that we make when we make these design decisions, and make these application decisions. We need to remove as many barriers from our editors to publishing.</p>\n\n\n\n<p>And sometimes that’s, how can we reduce the number of clicks to get a full fledged story out the door? Or it’s, how do we make this work with as few distractions as possible on a mobile phone when somebody’s sitting in the back of a boardroom?</p>\n\n\n\n<p>[00:29:32] <strong>Nathan Wrigley:</strong> Yeah. So available on everything, everywhere. Where there’s an internet connection, you can get to this.</p>\n\n\n\n<p>[00:29:37] <strong>Joshua Bryant:</strong> Yeah.</p>\n\n\n\n<p>[00:29:38] <strong>Nathan Wrigley:</strong> Yeah, okay. One of the curious things, and again, we’re going to go into the technical details here, so forgive me if this question is misplaced, because you specifically mentioned replacing Core / Editor with Core / Block Editor. I’m not really familiar with what that distinction is, but the fact that you mentioned that kind of gave me an intuition that there was something there. So why was that important? And you are going to have to go slightly gently on me cause I don’t really understand.</p>\n\n\n\n<p>[00:30:01] <strong>Joshua Bryant:</strong> I will gently wade into the weeds here. When we’re building custom blocks in our process here, a lot of times we use the data stores. And there’s an editor data store, and a block editor data store. What does that look like in the WP admin? When you pull up a post the block inserter, when you hit the plus on the top left, or you hit add, all of the blocks that show up, that’s one part of the Gutenberg editor.</p>\n\n\n\n<p>The big chunk in the middle is the second part where you do all your typing, you put your post, you add your images. And then the sidebar on the right, where you make adjustments, is the third part. All three of those components are the Block Editor. Everything that exists outside of that is the broader editor. Think of that as like a giant wrapper around the entire thing. That has like the save button, the publish button. It has information about the post and all of its attributes.</p>\n\n\n\n<p>And so it has much more information. The Block Editor just needs to know what blocks exist on the page. The Editor needs to know about a much broader context inside of WordPress. When we moved the Editor, we moved the Block Editor. So the save button isn’t there. We’re not using that. We wrote our own save button that hits the API.</p>\n\n\n\n<p>[00:31:23] <strong>Nathan Wrigley:</strong> Can I just pause you there? So when you say the Block Editor, you are describing the three things. The panel on the left, the central area where you create the content, and the sidebar on the right, if you like, where the settings for those might be. But not the wrapper.</p>\n\n\n\n<p>[00:31:36] <strong>Joshua Bryant:</strong> Right. And we actually went one step further and said, we don’t need the left or the right. We just need the part in the middle. We want to make it as distraction free as possible and move it over. So we have the option to put the sidebar there, and the sidebar works, but we have chosen as a business decision, we don’t want it.</p>\n\n\n\n<p>And since we’re headless, whether they change the font or the colour, none of that actually affects our front end. We don’t want editors to be able to bold and italicise and make all the text red that they think is important because they would go crazy. They think all my text is important.</p>\n\n\n\n<p>So yeah, we moved all of just that middle piece, just that Block Editor is what we moved over. And we have a save button, and a publish button that don’t interact with the WordPress Editor, they interact with the WordPress API.</p>\n\n\n\n<p>[00:32:28] <strong>Nathan Wrigley:</strong> The REST API pushing it to the regular WordPress site. Okay, and again, just harking back to what you mentioned a moment ago, when we began this conversation, I was imagining a different thing. I was imagining that you pulled the Block Editor in its entirety out. So I’ve learned something there. So this is just that content creation area.</p>\n\n\n\n<p>And by stripping out the left, and the right, and the publish and all of those things, that’s where the time saving comes, is it? Is that where the few seconds can be shaved off because it’s the bare bones of what it requires to create some text on a screen.</p>\n\n\n\n<p>[00:33:00] <strong>Joshua Bryant:</strong> Yes, exactly. Because a lot of times it’s headline, paragraph, send. That’s it for the first iteration of that article.</p>\n\n\n\n<p>[00:33:07] <strong>Nathan Wrigley:</strong> So one of the questions that I had, which now appears to be not necessary, but I’m going to ask it anyway. I was asking about things like, for example, manually editing the content that you would make in the React app, undoing things, history, and so on. That’s not really what’s going on. You’re doing it this one time in the React app, then everything after that is happening in the WordPress website.</p>\n\n\n\n<p>So the history and everything is stored in the regular way, the bolding, the italicising, the, I want to make it red, that’s all done posthumously after the fact, once it’s been published, or at least shunted via the REST API to the WordPress, you know, the database, the regular WordPress website. So that all happens there. The amendments happen there.</p>\n\n\n\n<p>[00:33:49] <strong>Joshua Bryant:</strong> Right. And we still have access to all of the toolbar options. So if you want to add a link, you would do it the exact same way that you add a link in your WordPress post. So we have some of that available to us, but we’ve locked it down. Not because it won’t work, but because we don’t want it to be a distraction for our editors.</p>\n\n\n\n<p>[00:34:09] <strong>Nathan Wrigley:</strong> So is there any type of content that, I’m trying to imagine a scenario where, presumably not everybody needs the React app. So for example, if I’m writing a piece about, I don’t know, gardening or something, you know, it’s really not time sensitive. I could write this next year and it’s just as important, or a recipe or something like that. Do I need to be in the React app? Or is that just for the kind of, the journalists out in the field who need things quick? So have you got like this two tier system of editing, the, I need it extra, specially quick, you are in React, but the gardening post is just done as a regular post?</p>\n\n\n\n<p>[00:34:41] <strong>Joshua Bryant:</strong> Yes. And that’s the majority of our posts, are all regular posts, and they’ve had time to plan it out and gather their assets, which they do in the planning tool, and all of that information syncs over to WordPress. But they don’t do any editing other than our breaking news.</p>\n\n\n\n<p>[00:34:58] <strong>Nathan Wrigley:</strong> Okay. It’s the breaking news React app then basically.</p>\n\n\n\n<p>[00:35:01] <strong>Joshua Bryant:</strong> Yes.</p>\n\n\n\n<p>[00:35:01] <strong>Nathan Wrigley:</strong> Okay, that’s curious. Sorry, this is sort of sidestepping slightly. So they just create text. They create text and lists and that’s it. Paragraphs and lists. That’s all they’ve got. And when they hit the REST API, does it publish automatically or do they hit some other editorial workflow where somebody more senior gets to look at it? Because I’m guessing in this scenario where Taylor Swift got married, you just want to go straight to front end.</p>\n\n\n\n<p>[00:35:28] <strong>Joshua Bryant:</strong> Yeah. It goes straight to the front end. They have a paragraph and list, that’s for the core, but they also have some of our proprietary plugins that, like we have a correction, and we have a ticker inserter, and there are a couple ones that we moved over, like our byline. We have a author database, and so they can say, hey, I wrote this. And so that’s a block that we wrote, and it works in WordPress and it also works in the planning tool, but it’s very limited what they can do because that’s all they needed. So we said we’ll strip everything else out.</p>\n\n\n\n<p>[00:36:00] <strong>Nathan Wrigley:</strong> Is it a common workflow then where the same author who’s written this really time sensitive piece will hit publish over there, it goes from React app, REST API, to WordPress, to the front end? They would then almost immediately, do they at that point let go of it or do they then almost immediately go back to the WordPress website and think, actually, do you know what, I do want that bit bold, I would like to underline that? So yeah, I’m just curious what that workflow looks like.</p>\n\n\n\n<p>[00:36:26] <strong>Joshua Bryant:</strong> I think it depends on the situation. And so in one case, while it is a breaking news story, as long as we don’t convert it to a full article, we can make updates in the planning tool. So he can go back, we can edit that and say, well, I wanted it bold, I’m going to do it in the planning tool. But if you wanted to, you could also do it in the WordPress environment. When we say convert to an article, we mean, this was breaking news, but I’m going to click a button and that’s going to let other editors know, we’re about to make this a full fledged article.</p>\n\n\n\n<p>[00:36:56] <strong>Nathan Wrigley:</strong> Oh, I see.</p>\n\n\n\n<p>[00:36:57] <strong>Joshua Bryant:</strong> Yeah. Because a lot of times we have multiple editors working on the same article. And so we need to be in coordination, especially around breaking news. Hey, this is happening right now. I’ve pushed it out. I’m going to pass this off to you. Can you go in? Hopefully there are no typos, but fix any typos, or change the headline, or add SEO data. So they really work as a team, especially around breaking news and then pass that off to other editors.</p>\n\n\n\n<p>[00:37:24] <strong>Nathan Wrigley:</strong> Yeah, I guess because you’re in the weeds of this, it’s so self-evident what this workflow is. It’s just for me, it’s so curious that there’s all these interesting little steps, and behind it all is this desire to save seconds. And it really is absolutely, this is nothing like a WordPress site that I’ve come across in the past. Hope you’ll forgive my ignorance for keeping asking the same kind of question. But I find that really fascinating.</p>\n\n\n\n<p>So the gardening post is done on the website, the important timely post is done in the React app, and yet there’s a convert to, I don’t know, regular content or something like that, button that an editor can go in and, yeah, it’s wheels within wheels. It’s absolutely fascinating.</p>\n\n\n\n<p>[00:38:01] <strong>Joshua Bryant:</strong> Yes. This is why I said earlier, there were so many business rules and so much time spent into building our WordPress system that we didn’t consider another tool very seriously. Because we have so much invested in there, and there’s so much power in the WordPress system that we’ve, first of all out of the box, but second, what we’ve built on top of it that we said, we need to leverage this in this use case here.</p>\n\n\n\n<p>[00:38:28] <strong>Nathan Wrigley:</strong> Yeah. Honestly, I think we could probably spend all day talking about this, but we probably should move on.</p>\n\n\n\n<p>I’m curious as to whether any of this knowledge that you’ve acquired building this, because I know that in the WordPress community, most people don’t do headless, but there is a hardcore of people like you who just love this stuff.</p>\n\n\n\n<p>And I’m just curious as to whether the knowledge that you’ve gained in the building of this, whether or not any of that gets put back into the open source project, whether there’s a commitment on your side, on the Dow Jones side to make this available, to open up a repo, to give away the content, the way that you’ve done it, the knowledge that you’ve acquired along the way?</p>\n\n\n\n<p>[00:39:02] <strong>Joshua Bryant:</strong> Yeah, I think that is ultimately my goal. I started a repo just to show how we moved Gutenberg. There’s a lot of proprietary stuff that I had to take out of there. This is just my repo at this point. It’s lacking a lot of the, how do you get a custom block to work over there, at this point? I want to continue to add to that, but I think I’m also considering what, does this do for the broader WordPress community? How can this be applied to help Core, or to help contractors, or to help people who have a lot of clients.</p>\n\n\n\n<p>One thing I’ve thought about is, if we have clients who may be difficult, right? I think we’ve all run into people at one point or another that said, I don’t like WordPress. I’ve heard the word React. I want React. People say, React is cool, right? Or I want a Vue project, or I want it to look like this. I don’t want to go to WordPress backend.</p>\n\n\n\n<p>This is opening up a whole different set of opportunities where we can say, okay, I’m going to throw together, I’m going to vibe code, which I hate, but I want to vibe code a one page React application, and rely on the WordPress API to give me database, to give me user management, post saves, revision history. You can use WordPress as its own complete system and then just slap React on top of it, and have the full Gutenberg editing experience and save all of your information and still do all the things that you know how to do in WordPress, and your client’s happy and they don’t know anything about it.</p>\n\n\n\n<p>[00:40:38] <strong>Nathan Wrigley:</strong> It’s kind of like WordPress without the WordPress. It’s the look and feel of WordPress without the overhead of WordPress.</p>\n\n\n\n<p>[00:40:43] <strong>Joshua Bryant:</strong> It’s the power of WordPress. And what I say is the power of WordPress at the speed of breaking news. But it’s the power of WordPress at whatever the client wants. And so if they want one thing, you can give it to them there. And if you have a lot of clients and you have people spinning up different interfaces, maybe it’s React, it’s Vue. You have eight different clients, you can put them all into one Multisite and you can use WordPress as the backend for all of them. And each application looks completely different, tailored to those needs, and it all just goes through the same old WordPress functionality.</p>\n\n\n\n<p>[00:41:20] <strong>Nathan Wrigley:</strong> Yeah, I guess that the way the interface looks is kind of the key bit there. You could make it look like Gutenberg, you could make it look nothing like Gutenberg. It could be anything that you liked. Simple, complicated, whatever.</p>\n\n\n\n<p>I’m guessing this is really enterprise stuff, though. I don’t think we’re ever going to be straying into, I don’t know, I’ve got a dog walking service and I would like to offer that in my town of 3,000 people. We’re not for that. This is kind of enterprise, publishing, big pharma, that kind of thing.</p>\n\n\n\n<p>[00:41:46] <strong>Joshua Bryant:</strong> Enterprise or people who deal with a lot of particular clients. Or people who want to build something cool for themselves, like I want to collect quotes when I hear them. I might build that application so that I can just pull up my phone, send out something like a tweet. I can say, Nathan Wrigley said this. It was really cool. Send. And now it’s a custom post type on my website called notable quotes, and it’s just your quote attribution.</p>\n\n\n\n<p>[00:42:15] <strong>Nathan Wrigley:</strong> Yeah, yeah. I guess the beauty of the open source project, and thank you for honoring the commitment there, hopefully we’ll get the knowledge distributed, is that the first time around you doing it, it would’ve been very expensive because you’re a developer, your time is valuable. So presumably all of that got wrapped into this project. The company that you are working for could afford that. But maybe now it’s going to be a slightly easier bridge to cross. And I guess communicating with you might make that a little bit easier. I don’t mean to open up your calendar or anything, but would you potentially make yourself available through email or Slack or whatever? And if that’s the case, where would people find you?</p>\n\n\n\n<p>[00:42:54] <strong>Joshua Bryant:</strong> Of course. I would say that I would love to pass this off. I try to tell myself, when I do something new, I always say, this is going to be the worst it ever is. And so when I’m looking at this, I see a lot of potential, but I also realise that this state that we’re in right now is the worst this idea is ever going to be. And I would love for people to come and make it better, and tell me what I did wrong and tell me what I can do better. And to say, but what if we did this instead? And that’s the beauty of open source. We want to see it grow. We want to see all of the possibilities that we can do with this.</p>\n\n\n\n<p>And so please, first of all, take it, run with it, make it better. And second of all, yes, I’d be glad to meet and talk with anybody about it. And if I could save somebody the two week spiral, or the two week loop, I would love to do that as well. So yeah, I will absolutely make myself available.</p>\n\n\n\n<p>[00:43:47] <strong>Nathan Wrigley:</strong> Where can you be found? What’s the best place to find you?</p>\n\n\n\n<p>[00:43:50] <strong>Joshua Bryant:</strong> The best place to find me would probably be at my personal email address, which is j b r y a 0 2 9 at gmail dot com. And that is a carryover from my college years, so it’s a little weird, but it’ll work.</p>\n\n\n\n<p>[00:44:06] <strong>Nathan Wrigley:</strong> I’ll make sure not to put that into the text on the WP Tavern website, but it’s in the audio now, so hopefully people can find it. Anything that we’ve talked about, if I can find a link to it, I will put that in. So listeners, head over to wptavern.com, search for the episode of Joshua Bryant. That’s Joshua, J-O-S-H-U-A and Bryant, B-R-Y-A-N-T. Search over there and you will find all of the bits and pieces.</p>\n\n\n\n<p>I’ll link to the presentation that Joshua gave at WordCamp US, and maybe that’ll be on WordPress TV by the time you come to consume this. Anything else that Joshua wants to send me, I’ll put on there as well. So, Joshua Bryant, thank you for shepherding me through something that was much harder to understand than I’m capable of. So thank you so much.</p>\n\n\n\n<p>[00:44:49] <strong>Joshua Bryant:</strong> No, thank you. You ask great questions and I appreciate it.</p>\n</div></details>\n\n\n\n<p>So on the podcast today we have <a href="https://us.wordcamp.org/2025/speaker/josh-bryant/">Joshua Bryant</a>.</p>\n\n\n\n<p>Joshua works at Dow Jones, helping power some of the world’s largest publishing sites, including the Wall Street Journal, Barron’s, and MarketWatch, all on a WordPress multisite platform. His background with WordPress started, as it does for many, by inheriting a site and slowly peeling back the layers of what the CMS can do, from page building to infrastructure and custom workflows.</p>\n\n\n\n<p>At WordCamp US, he delivered a presentation called “Reimagining WordPress Editing: How We Embedded Gutenberg Into Our Product Ecosystem” which digs into how his team decoupled the Gutenberg block editor from WP Admin and embedded it in a standalone React application, all while keeping content stored in a traditional WordPress database.</p>\n\n\n\n<p>This episode is a journey into why time, down to the second, matters in the publishing world, and how “headless” solutions can address those needs. Joshua explains how editorial workflows were rebuilt so that breaking news can be published or updated with lightning fast speeds, removing distractions and page reloads for editors while retaining the full power and extensibility of WordPress behind the scenes.</p>\n\n\n\n<p>We talk through the technical architecture: planning, editing, and rendering are split into separate applications, with Gutenberg, customised down to just two or three essential blocks, living outside the typical WordPress environment. Joshua talks about the challenge of simulating the global WP object, keeping business logic and proprietary plugins intact, and interacting with the REST API for instantaneous content publishing.</p>\n\n\n\n<p>If you’re interested in headless WordPress, editorial workflows at scale, or how enterprise newsrooms leverage open-source tech for real-world speed, this episode is for you.</p>\n\n\n\n<h2 class="wp-block-heading">Useful links</h2>\n\n\n\n<p><a href="https://us.wordcamp.org/2025/session/reimagining-wordpress-editing-how-we-embedded-gutenberg-into-our-product-ecosystem/">Reimagining WordPress Editing: How We Embedded Gutenberg Into Our Product Ecosystem</a> – Joshua’s presentation at WordCamp US 2025</p>\n\n\n\n<p><a href="https://www.dowjones.com">Dow Jones</a></p>\n\n\n\n<p><a href="https://www.wsj.com">Wall Street Journal</a></p>\n\n\n\n<p><a href="https://www.marketwatch.com">MarketWatch</a></p>\n\n\n\n<p><a href="https://www.barrons.com">Barron’s</a></p>\n\n\n\n<p><a href="https://www.mansionglobal.com">Mansion Global</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 05 Nov 2025 15:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Nathan Wrigley";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Matt: Andrej on Dwarkesh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150470";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://ma.tt/2025/11/andrej-on-dwarkesh/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:692:"<p>Most interviews I watch at 1.5-2x speed, but among my friends, we joke that there are a few people for whom we really enjoy their thoughts at 1x (<a href="https://x.com/jtzou">shoutout to JT</a>). I’m an unabashed fanboy of <a href="https://karpathy.ai/">Andrej Karpathy</a> (<a href="https://ma.tt/2025/10/nanochat-mcp/">blogged nanochat Oct 13</a>), and his interview with <a href="https://www.dwarkesh.com/">Dwarkesh</a> is excellent. It’s very dense; I marinated it at 1x.</p>\n\n\n\n<figure class="wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 05 Nov 2025 04:51:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"WordPress.org blog: WordPress 6.9 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19263";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2025/11/wordpress-6-9-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5444:"<p>WordPress 6.9 Beta 3 is available for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is still under development</strong>. Please don’t install, run, or test this version of WordPress on production or mission-critical websites. Instead, you can evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 Beta 3 can be tested using any of the following methods:</p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href="https://wordpress.org/plugins/wordpress-beta-tester/"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-beta3.zip">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href="https://make.wordpress.org/cli/"> WP-CLI</a> command: <br /><code>wp core update --version=6.9-beta3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 Beta 3 WordPress Playground instance</a> to test the software directly in your browser. No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p></p>\n\n\n\n<p>The final release of WordPress 6.9 is scheduled for <strong>December 2, 2025</strong>, and the <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p>Please continue checking the <a href="https://make.wordpress.org/core/">Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p><strong>Find out what’s new in WordPress 6.9</strong>: Read the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class="wp-block-heading">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 3 version is key to ensuring that everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally as important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> provides a walk through on testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta area</a> of the support forums, or directly to <a href="https://core.trac.wordpress.org/newticket">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href="https://core.trac.wordpress.org/tickets/major">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href="https://make.wordpress.org/test/">testing initiatives in Make Core</a> and join the<a href="https://wordpress.slack.com/messages/core-test/"> #core-test channel</a> on<a href="https://wordpress.slack.com/"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Beta 3 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 3 contains more than 80 updates and fixes since the Beta 2 release.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes, and more are on the way with your testing! You can browse the technical details for all issues addressed since Beta 2 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-28&until=2025-11-04">Gutenberg commits for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=10%2F28%2F2025..11%2F04%2F2025&milestone=6.9&col=id&col=milestone&col=owner&col=type&col=priority&order=id">Closed Core Trac tickets for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href="https://github.com/WordPress/wordpress-develop/compare/7dcb09c26a1d97c20dcceb866abbd0f3c128388b...81f755846c2d66ce7d21b01623f8163a9f7c6ef6">Comparing commit changes in Core for 6.9</a> since October 28, 2025</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">A Beta 3 haiku</h2>\n\n\n\n<p><em>Code is poetry,</em></p>\n\n\n\n<p><em>and poetry is magic.</em></p>\n\n\n\n<p><em>So code is magic.</em></p>\n\n\n\n<p class="has-text-align-right"><em>Props to </em><a class="mention" href="https://profiles.wordpress.org/akshayar/"><span class="mentions-prefix">@</span>akshayar</a> <em>, </em><a class="mention" href="https://profiles.wordpress.org/jeffpaul/"><span class="mentions-prefix">@</span>jeffpaul</a>, <a class="mention" href="https://profiles.wordpress.org/krupajnanda/"><span class="mentions-prefix">@</span>krupajnanda</a>, <a class="mention" href="https://profiles.wordpress.org/mosescursor/"><span class="mentions-prefix">@</span>mosescursor</a>, <em>and</em> <a class="mention" href="https://profiles.wordpress.org/westonruter/"><span class="mentions-prefix">@</span>westonruter</a> <em>for proofreading and review.</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 04 Nov 2025 15:34:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Amy Kamala";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:21;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"Open Channels FM: Why Simplicity Matters in Website Analytics";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111305";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://openchannels.fm/why-simplicity-matters-in-website-analytics/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:343:"Website analytics are an essential part of running any site, but many people get lost in complicated dashboards and too many choices. It might seem easy to just pick the free tool everyone uses, but often these platforms cater to large organizations, making things confusing for individuals and small businesses. If you are trying to […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 04 Nov 2025 02:15:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Matt: Jetpack Saves";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150457";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:36:"https://ma.tt/2025/11/jetpack-saves/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:693:"<p>Mia Elvasia has a great article about <a href="https://blogrecode.com/jetpack-tools-every-blogger-should-be-using/">how they realized they were spending $635/yr across various plugins to get things that Jetpack offered bundled and often free</a>. Save money! </p>\n\n\n\n<p>Jetpack is frequently overlooked as one of the most underappreciated plugins in the WordPress universe. This is partially our fault, as the article notes, because the UI for some of these settings is quite poor. We’re working on it! If you can tolerate a bit of UI clunkiness, there’s significant value to be gained from Jetpack right now. For everyone else, we’ll make it much more intuitive soon.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 03 Nov 2025 19:10:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: Chop Wood, Carry Water";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150450";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:33:"https://ma.tt/2025/11/chop-carry/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:461:"<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p>Before enlightenment; chop wood, carry water. After enlightenment; chop wood, carry water.</p>\n</blockquote>\n\n\n\n<p><a href="https://www.sloww.co/enlightenment-chop-wood-carry-water/">Kyle Kowalski has an amazing blog post exploring many aspects of this Zen Kōan</a>, including some diversions into David Foster Wallace’s legendary commencement speech, This is Water.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 02 Nov 2025 20:57:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Matt: Creed Update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150444";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"https://ma.tt/2025/11/creed-update/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1682:"<p>This week, the <a href="https://automattic.com/creed/">Automattic Creed</a> received its first-ever update, which I’ll describe as a minor point upgrade. This is the sentence before and after.</p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p id="p-2">I am in a marathon, not a sprint, and no matter how far away the goal is, the only way to get there is by putting one foot in front of another every day.</p>\n</blockquote>\n\n\n\n<p>Is now.</p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p id="p-4">I am in a marathon, not a sprint; no matter how far away the goal is, the only way to get there is to put one foot in front of the other every day.</p>\n</blockquote>\n\n\n\n<p>As I wrote earlier in our internal <a href="https://wordpress.com/p2/">P2s</a>, “Always great to bury a gerund.” And now we have a semicolon! It’s all quite exciting. For the backstory, please read <a href="https://ma.tt/2011/09/automattic-creed/">Why Your Company Should Have a Creed</a>. I said in 2011 “I’m sure that it will evolve in the future” but I didn’t expect it to be 14 years before the first revision. </p>\n\n\n\n<p>Internally at Automattic we’ve debated updating the Creed in dozens of conversations and blog posts, usually in the context of adding a sentence, which I still hope will happen in a future version. But this is a minor update. We’ll see when Creed 2.0 happens.</p>\n\n\n\n<p>The private Automattic intranet is one of the most delightful things about working there, <a href="https://automattic.com/work-with-us/">which you may consider as well</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 02 Nov 2025 02:24:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt: Wayback Machine Joint";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150430";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:30:"https://ma.tt/2025/10/wayback/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:893:"<p><a href="https://automattic.com/">Automattic</a> has been working with the <a href="https://archive.org/">Internet Archive</a> to develop a plugin to combat link rot, <a href="https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/">and it’s a plugin I’d encourage you to install</a>. As the plugin says:</p>\n\n\n\n<p>When a linked page disappears, the plugin helps preserve your user experience by redirecting visitors to a reliable archived version. It also works proactively by archiving your own posts every time they’re updated, creating a consistent backup of your content’s history.</p>\n\n\n\n<p>I’ve been doing this manually on my old archives, fixing broken links and tending the garden. But we can make it all automatic. <img alt="🙂" class="wp-smiley" src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" style="height: 1em;" /></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 01 Nov 2025 04:33:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:116:"Gutenberg Times: Plugin Security, Divi to Gutenberg, Internet Archive, Gutenberg 21.9 and 22 — Weekend Edition 347";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://gutenbergtimes.com/?p=42439";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:30208:"<p>Hi there, </p>\n\n\n\n<p>On All Saints Day, November 1st, we honor dear people who passed. I wanted to take the occasion and point you to the <a href="https://wordpress.org/remembers/"><strong>WordPress Remembers</strong></a> page where accomplished contributors who passed have a permanent home. Their work lives on in every new story, every new website, and every new idea made possible by WordPress<em>.</em></p>\n\n\n\n<p>And it’s a long newsletter today with lots of great blog posts, videos and tutorials. I also included two ecosystem-related developments that would be normally out of scope for this niche newsletter. They have huge implications for the security and longevity of WordPress, and I definitely thought you shouldn’t miss. </p>\n\n\n\n<p>Have a lovely weekend,</p>\n\n\n\n<p>Yours, <img alt="💕" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png" style="height: 1em;" /><br /><em>Birgit</em></p>\n\n\n\n<p>PS: Voting for the <a href="https://thewpweekly.com/awards/"><strong>WPAwards</strong></a> already started. Vote for your WordPress favorites, hopefully among them the blog <strong>Gutenberg Times</strong> and the podcast <strong>Gutenberg Changelog. </strong>Hat Tip to Davinder Singh Kainth for putting the WPAwards together every year.</p>\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<nav class="wp-block-table-of-contents"><ol><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/#wordpress-ecosystem-updates">WordPress Ecosystem updates</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/#0-word-press-release-information">Developing Gutenberg and WordPress</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/#0-p">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/#2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/plugin-security-divi-to-gutenberg-internet-archive-weekend-edition-347/#3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</a></li></ol></nav>\n</div></div>\n</section>\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%"></div>\n\n\n<h2 class="wp-block-heading" id="wordpress-ecosystem-updates">WordPress Ecosystem updates</h2>\n\n\n\n<p><a href="https://x.com/davidperezmk"><strong>David Perez</strong></a>, a Hostinger sponsored contributor, posted a new milestone from the Plugins Review team that will have broader impact throughout the WordPress ecosystem: <a href="https://make.wordpress.org/plugins/2025/10/29/plugin-check-plugin-now-creates-automatic-security-reports-update/"><strong>The Plugin Check Plugin now creates automatic security reports after each plugin update</strong></a>. It reports on the update of the Plugin Check plugin that not only screens new plugin submissions but also expands the screening to subsequent versions of plugins for security, compatibility, and compliance. </p>\n\n\n\n<p>Currently, the team evaluates internal information and sends reports to authors as needed. They observe PCP behavior during updates for refinement. After this phase, automated security reports will be emailed to authors right after plugin updates. </p>\n\n\n\n<p>With Plugins accounting for <a href="https://www.securityweek.com/8000-new-wordpress-vulnerabilities-reported-in-2024/">96% of WordPress vulnerabilities in 2024</a>, this increased scrutiny on the WordPress plugins repository submissions will have a huge impact on the health of the whole WordPress ecosystem. And it will make the web a better place. </p>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, has the details in her report: <a href="https://www.therepository.email/wordpress-plugins-team-rolls-out-automatic-security-scans-for-all-plugin-updates"><strong>WordPress Plugins Team Rolls Out Automatic Security Scans for All Plugin Updates</strong></a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>The second development is a plugin to eliminate link rot on the internet and was brought to you by the <a href="https://archive.org/"><strong>Internet Archive</strong></a>– <em>“a non-profit library of millions of free texts, movies, software, music, websites, and more.”</em> It also runs the <a href="https://web.archive.org/web/">Wayback-Machine</a>, surfacing previous version of websites. The plugin <a href="https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/"><strong>Internet Archive Wayback Machine Link Fixer</strong></a> made its debut in the WordPress repository. It’s came to pass in a collaboration between the Internet Archive and Automattic’s Special Projects team. </p>\n\n\n\n<p><strong>Matt Mullenweg</strong> wrote on <a href="https://ma.tt/2025/10/wayback/">his blog</a>, “When a linked page disappears, the plugin helps preserve your user experience by redirecting visitors to a reliable archived version. It also works proactively by archiving your own posts every time they’re updated, creating a consistent backup of your content’s history.”</p>\n\n\n\n<p>The plugin is free, you do need a free account on the Internet Archive and obtain API keys to connect your site to the Internet Archive, on step 2 and 3 you’ll have to make some addtional decision. </p>\n\n\n\n<figure class="wp-block-image size-full"><img alt="" class="wp-image-42572" height="470" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-01-at-10.53.50.png?resize=575%2C470&ssl=1" width="575" /></figure>\n\n\n\n<p>As a side note, scrolling through Gutenberg Times history on the Wayback machine is fascinating. I am person you lives solidly in the moment and often forgets what happened in the past. (or it’s just old age, don’t say it). I am working on a block theme for the site, and going back to previous versions of the site helps to educate the future. Anyway, back to block editor stuff and more. </p>\n\n\n\n<h2 class="wp-block-heading" id="0-word-press-release-information">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>WordPress 6.9 Beta 2 </strong>was released this week. Release coordinator <a href="https://x.com/rane_akshaya"><strong>Akshaya Rane</strong></a> has the details in the <a href="https://wordpress.org/news/2025/10/wordpress-6-9-beta-2/">WordPress news post</a>. A description of what this next version will bring is available in the announcement of <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">the Beta 1 release</a>. </p>\n\n\n\n<p>Release Test co-lead, <strong>Krupa Nanda</strong> posted great instructions on how you can <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/"><strong>Help test the Beta 1 release of WordPress 6.9 </strong></a>. It’s the best way to learn how to use the new features and report quirks and bugs back to the contributors, so they can be fixed before Release Candidate 1 which is scheduled for November 11. </p>\n\n\n\n<p>The <a href="https://github.com/WordPress/gutenberg/releases/tag/v22.0.0-rc.1"><strong>Gutenberg 22.0 RC 1</strong></a> is now available for testing. It contains 53 Bug fix PRs that are backported to WordPress Core and will make it into WordPress 6.9, too. <br /><a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/"></a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Hector Prieto </strong>published the release post for Gutenberg 21.9 version. He highlighted: </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/10/28/gutenberg-21-9-october-22/#all-the-blocks">All the blocks!</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/10/28/gutenberg-21-9-october-22/#direct-drag-and-drop">Direct drag and drop</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/10/28/gutenberg-21-9-october-22/#dataviews-customization-persistence">DataViews customization persistence</a></li>\n</ul>\n\n\n\n<figure class="wp-block-image size-large"><img alt="Math block coming to WordPress 6.9 " class="wp-image-42540" height="330" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-10-31-at-17.54.27.png?resize=652%2C330&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">\n<p><img alt="🎙" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png" style="height: 1em;" /> The latest episode is <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a> with <strong>Ellen Bauer</strong>, project lead at Automattic. </p>\n\n\n\n<figure class="wp-block-image size-full is-style-no-vertical-margin"><img alt="Gutenberg Changelog 124 with Ellen Bauer and Birgit Pauli-Haack" class="wp-image-42695" height="185" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-07-at-18.56.39.png?resize=652%2C185&ssl=1" width="652" /></figure>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div></div></div>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>The Editorial Staff at <em>WPBeginner</em> already let you know <a href="https://www.wpbeginner.com/news/whats-coming-in-wordpress-6-9-features-and-screenshots/"><strong>What’s Coming in WordPress 6.9? (Features and Screenshots)</strong></a>. They highlight block-level Notes for collaborative feedback, block visibility controls to hide content from front-end visitors, and improved template management across theme switches. New blocks include Accordion, Terms Query, Math, and Time to Read, alongside enhancements like text-fitting typography and a dashboard-wide Command Palette. Performance gains include on-demand block-style loading, faster emoji detection, and optimized cron execution. The foundation for AI workflows arrives through the Abilities API, enabling machine-readable WordPress capabilities for secure automation.</p>\n\n\n\n<h2 class="wp-block-heading" id="0-p">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Amadeu Arderiu</strong>, co-founder of Ploogins and explorer of all things AI and WordPress, was interviewed by <strong>Nathan Wrigley</strong> on the WPBuilds podcast episode 443. They discussed <a href="https://wpbuilds.com/2025/10/30/443-ai-experiments-in-wordpress-a-plugin-search-engine-customer-support-bots-and-block-editor-integration/"><strong>AI-powered WordPress projects: a smart plugin search, an AI website chatbot, and AI-driven block editor tools</strong></a>. In the chat they touched on three tools: </p>\n\n\n\n<ul class="wp-block-list">\n<li><strong><a href="https://ploogins.com/">Ploogins</a></strong> – a natural language search engine for WordPress plugins. Just tell it the functionality you need and it gives a list of free and premium plugins.</li>\n\n\n\n<li><strong><a href="https://join.chat/en/ai/)">Joinchat</a></strong>, a plugin known for its iconic floating WhatsApp button on countless WordPress sites. This chatbot answers user questions using only the content from your site, some setting to fine-tune the scope. </li>\n\n\n\n<li><strong><a href="https://gutenberg.suggerence.com/">Suggerence</a></strong>, an experiment that places conversational AI directly into the Gutenberg block editor. A site owner can simply describe a task and the robot executes. Example: “Create a hero section with a button”. </li>\n</ul>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>I am going to miss the steady creation of fun blocks via Automattic’s Telex. This week’s <strong><a href="https://blocktober.fun/">Blocktober.fun</a></strong> creations are also the last ones on the site.</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://blocktober.fun/trick-or-treat/">Trick or treat</a></li>\n\n\n\n<li><a href="https://blocktober.fun/filter-table/">Filter Table</a></li>\n\n\n\n<li><a href="https://blocktober.fun/bar-chart/">Bar chart</a></li>\n\n\n\n<li><a href="https://blocktober.fun/checklist/">Checklist</a></li>\n\n\n\n<li><a href="https://blocktober.fun/blogroll/">Blogroll</a></li>\n</ul>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, reported <strong><a href="https://www.therepository.email/blocktober-wraps-up-as-telex-inspires-a-wave-of-wordpress-experimentation">Blocktober Wraps Up as Telex Inspires a Wave of WordPress Experimentation</a>.</strong> Tammie Lister’s daily block-a-day challenge has become part of a growing wave of Telex-powered creativity, showing how AI can make building in WordPress feel playful again. </p>\n\n\n\n<p><a href="https://telex.automattic.ai/">Telex, Automattic’s experimental AI tool,</a> enables anyone to build custom Gutenberg blocks using natural language prompts, generating downloadable plugins through a chat-style interface. The tool sparked developer enthusiasm with shared creations ranging from summary generators to specialized calculators.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong><a href="https://www.elegantthemes.com/gallery/divi/">Divi</a> by Elegant Themes</strong> has been around for ages with roughly a million users. This month I came across two blog posts from agencies about moving from Divi to Gutenberg and the block editor. Two approaches with the same outcome. </p>\n\n\n\n<p><strong>Johanne Courtright</strong> shared her team’s approach in <a href="https://groundworx.dev/blog/why-i-dont-migrate-divi-sites-i-rebuild-them/"><strong>Why I Don’t Migrate Divi Sites (I Rebuild Them)</strong></a>, arguing that rebuilding Divi sites with Gutenberg is faster and cheaper than migration. Divi’s proprietary format traps users in technical debt and poor performance. Migration plugins, while available, result in messy conversions that still require manual layout rebuilding. Clean rebuilds uphold content integrity and design patterns, enabling faster site delivery within 3-4 weeks versus 6-8 weeks of migration difficulties.</p>\n\n\n\n<p>In his post <a href="https://developress.io/divi-to-gutenberg-migration-2025-step-by-step-guide/"><strong>Divi to Gutenberg Migration 2025 – Step by Step Guide</strong></a>, <strong>Piotr Kochanowski</strong> at DevelopPress outlines a migration strategy using Divi 5’s block-like format and WordPress 6.8+’s features. The guide highlights pre-migration audits, staging environments, and page-by-page transitions through the Divi Layout Block. Key steps include design-system extraction, template rebuilding, and SEO parity verification. Migrations for standard 20–40 page sites typically take 1–3 weeks, while complex projects may require 4–8 weeks.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Cheyne Klein</strong>, Happiness Engineer at Automattic, held an online workshop on <em>Learn WordPress</em> on <a href="https://wordpress.tv/2025/10/27/building-top-level-menus-sub-menus/"><strong>Building top-level menus & sub-menus</strong></a>. You’ll learn the two main ways to create them in WordPress — the Navigation block and the Classic Menu Editor.</p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="WordPress TV cover for Building Top-Level Menus & Sub-Menus in WordPress" class="wp-image-42569" height="366" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-10-31-at-19.03.02.png?resize=652%2C366&ssl=1" width="652" /></figure>\n\n\n\n<p><strong>Benjamin Intal</strong>, Stackable, <a href="https://x.com/bfintal/status/1984511469237739592">announced</a> the new version (1.3.0) of the <a href="https://wordpress.org/plugins/interactions/"><strong>Interactions</strong></a> plugin which gives you controls to add animations and interactions to your site. He lists </p>\n\n\n\n<ul class="wp-block-list">\n<li>54 Pre-made Interactions </li>\n\n\n\n<li>DIY Interaction Builder </li>\n\n\n\n<li>GSAP-level performance </li>\n\n\n\n<li>Hero reveals, parallax images, scroll animations & more</li>\n</ul>\n\n\n\n<p><em>GSAP-level performance” refers to the high-speed, smooth, and efficient animations of GreenSock Animation Platform (GSAP). </em></p>\n\n\n\n<figure class="wp-block-image size-large"><a href="https://wordpress.org/plugins/interactions/"><img alt="Screenshot of the Interactions plugin " class="wp-image-42586" height="409" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-01-at-11.58.06.png?resize=652%2C409&ssl=1" width="652" /></a></figure>\n\n\n\n<h2 class="wp-block-heading" id="2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> dives into <a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/"><strong>Styling accordions in WordPress 6.9</strong></a> with you! This guide is here to help you adapt the design to your or your clients needs. You’ll learn how to apply styling via theme.json, style variations and patterns. </p>\n\n\n\n<figure class="wp-block-image size-full"><img alt="" class="wp-image-42554" height="414" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-10-31-at-19.01.18.png?resize=652%2C414&ssl=1" width="652" /></figure>\n\n\n<div class="ng-block-a42f19e8dce9ff16 wp-block-newsletterglue-text ng-block" style="color: #666666;" width="100%"><div><div><div align="none" class="ng-block-td" style="font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;"><p></p></div></div></div></div>\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;">\n<p><strong> <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/" rel="noreferrer noopener" target="_blank">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/">2020</a> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/">2021</a></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/">2022</a></strong></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023">2023</a></strong> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/"><strong>2024</strong></a></p>\n</section>\n\n\n<h2 class="wp-block-heading" id="3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p>On his personal blog, <strong>Riad Benguella</strong>, lead developer on the Gutenberg project, wrote about <a href="https://riad.blog/2025/10/25/debugging-wordpress-scripts-and-styles/"><strong>Debugging WordPress Scripts and Styles</strong></a>. He introduced a <a href="https://gist.github.com/youknowriad/e5854d6c602c73dec260d56a2783408a">vibe-coded tool</a> addressing increased JavaScript and CSS complexity in WordPress admin interfaces and editors. The tool reveals uncompressed file sizes, explicit enqueueing status, ancestor dependencies, and direct parent scripts. Users access it by placing the file in plugins and appending <code>?debug_script=true</code> to page URLs. Benguella recommends <a href="https://wordpress.org/plugins/query-monitor/">Query Monitor</a> by John Blackbourn for comprehensive debugging solutions.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Shani Bannerjee</strong> takes you on the journey to <a href="https://developer.woocommerce.com/2025/10/30/understanding-the-interactivity-api-driven-future-for-woocommerce-blocks/"><strong>Understand the Interactivity API-driven future for WooCommerce Blocks</strong></a>, explaining how this hybrid approach merges server-side PHP robustness with client-side JavaScript responsiveness. The API enables seamless interactions—cart updates, real-time filtering, interactive galleries—while maintaining block editor integrity. Product Collection, Product Filters, Product Gallery, Add to Cart Options, and MiniCart already implement it. Future WooCommerce blocks adopt Interactivity API from inception. Development shifts toward store-based state management and community-driven extensibility patterns.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>Earlier this month, <strong>JuanMa Garrido</strong> published the monthly roundup post <a href="https://developer.wordpress.org/news/2025/10/whats-new-for-developers-october-2025/"><strong>What’s new for developers? (October 2025)</strong></a> on the WordPress Developer Blog. If you missed it or you’d rather watch a video, Ryan Welcher goes over the post in this latest video <strong><a href="https://www.youtube.com/watch?v=0bflhPziNMU&t=12s">What’s New for WordPress Developers – October 2025</a></strong> on YouTube. In either format it’s not a post to miss. </p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Tammie Lister</strong> shared in her blog post <strong><a href="https://binatethoughts.com/abilities-explorer/">Abilities Explorer</a></strong> “The Abilities API is coming to WordPress 6.9 and I have brewed up a little tool to show what abilities you have on your site loaded in core, themes or plugins. It’s very freshly brewed so sip cautiously” she wrote. The experimental plugin visualizes available abilities by origin, enabling testing and detailed inspection. Built rapidly with Claude and Cursor as a learning exercise, it aims to help developers discover and understand WordPress’s emerging Abilities API registry while surfacing potential gaps in site functionality. The Abilities Explorer lives just on <a href="https://github.com/karmatosed/abilitiesexplorer">GitHub</a>. Check it out. </p>\n\n\n\n<figure class="wp-block-image size-full"><img alt="Screenshot of the Abilities Explorer for WordPress" class="wp-image-42548" height="332" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Abilities-Explorer.png?resize=652%2C332&ssl=1" width="652" /></figure>\n\n\n\n<p>In this week’s stream <a href="https://www.youtube.com/watch?v=iT3Wjwc5-Po"><strong>Multitasking with GitHub Copilot,</strong></a> <strong>Jonathan Bossenger</strong> attempts to update two repositories simultaneously. He uses the GitHub Copilot Coding Agent to implement the latest Abilities API and MCP adapter versions. He walks through debugging issues with GitHub Copilot. He covers setting up categories for abilities and testing local environments and tackles real-time coding problems. He leverages AI for documentation and updates. Bossenger also made his <a href="https://github.com/jonathanbossenger/wordpress-plugin-copilot-instructions"><strong>WordPress Plugin GitHub Copilot Instructions</strong></a> publicly available on GitHub to give you a head start. </p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<p>In his livestream, <strong>Ryan Welcher</strong> was<strong> <a href="https://www.youtube.com/watch?v=YmOrpp8ygbA" rel="noreferrer noopener" target="_blank">Using every Interactivity API feature in one site</a></strong>. He took a deep dive into the Interactivity API as he wanted to get back up to speed and build something that uses every directive and feature it offers.</p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<p><br /></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;">\n<p><strong><a href="https://gutenbergtimes.com/need-a-zip-from-master/">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href="https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href="mailto:pauli@gutenbergtimes.com">Email me </a>with your experience</p>\n\n\n\n<p><img alt="GitHub all releases" src="https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge" /></p>\n</section>\n\n\n<p class="has-text-align-center has-small-font-size"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href="mailto:pauli@gutenbergtimes.com">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p class="has-text-align-center has-small-font-size">For questions to be answered on the <a href="http://gutenbergtimes.com/podcast">Gutenberg Changelog</a>, <br />send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<p class="has-text-align-left"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action="https://gutenbergtimes.com/feed/" autocomplete="on" class="wp-block-newsletterglue-form ngl-form ngl-portrait" method="post"><div class="ngl-form-container"><div class="ngl-form-field" style="margin-bottom: 25px;"><label class="ngl-form-label" for="ngl_email"><br />Type in your Email address to subscribe.</label><div class="ngl-form-input"><input autocomplete="email" class="ngl-form-input-text" id="ngl_email" name="ngl_email" required="required" style="border-radius: 21px;" type="email" /></div></div><button class="ngl-form-button" style="background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;" type="submit">Subscribe</button><p class="ngl-form-text">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class="ngl-message-overlay"><div class="ngl-message-svg-wrap"><svg fill="none" height="24" stroke="#fff" stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"></polyline></svg></div><div class="ngl-message-overlay-text">Thanks for subscribing.</div></div><input id="ngl_list_id" name="ngl_list_id" type="hidden" value="26f81bd8ae" /><input id="ngl_double_optin" name="ngl_double_optin" type="hidden" value="yes" /></form>\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n</section>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 01 Nov 2025 00:07:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: 50k Bounty";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150420";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:33:"https://ma.tt/2025/10/50k-bounty/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:198:"<p>For smart, enterprising hackers <a href="https://blog.beeper.com/2025/10/28/build-a-beeper-bridge/">Beeper is offering bounties of up to $50,000 for people who create open source bridges</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 30 Oct 2025 15:51:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:75:"Open Channels FM: Episode 700 and The Biggest Lesson Learned With a Rebrand";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111766";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"https://openchannels.fm/episode-700-and-the-biggest-lesson-learned-with-a-rebrand/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:59:"As we hit 700 episodes, BobWP catches us up on the rebrand.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 30 Oct 2025 12:24:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Tammie Lister: Abilities explorer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://binatethoughts.com/?p=2466";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:46:"https://binatethoughts.com/abilities-explorer/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3419:"<p>WordPress 6.9 is coming and with it a few Core AI goodies including the Abilities API. </p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p><a href="https://make.wordpress.org/ai/2025/07/17/abilities-api/" rel="noreferrer noopener" target="_blank">New Abilities API</a>: A unified registry of callable WordPress capabilities with defined inputs and outputs, built for AI integrations and developer automation.</p>\n</blockquote>\n\n\n\n<p>This has a lot of potential for use, however in order to start that exploring, being aware of what plugins, themes and even core abilities exist is useful. That thinking took me on an adventure which saw the creation of the Abilities Explorer.</p>\n\n\n\n<h2 class="wp-block-heading">The what?</h2>\n\n\n\n<p>The Abilities Explorer is a simple plugin that shows the abilities on your site. It loads a page that summaries and splits into where the origin of the ability comes from.</p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-2467" height="521" src="https://binatethoughts.com/wp-content/uploads/2025/10/CleanShot-2025-10-29-at-16.58.34@2x-1024x521.png" width="1024" /></figure>\n\n\n\n<p>Once you see the abilities you can do a few things with them to discover more:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Test: </strong>Invoke Ability and Validate Input.</li>\n\n\n\n<li><strong>View details</strong>: Description and Output.</li>\n</ul>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-2473" height="691" src="https://binatethoughts.com/wp-content/uploads/2025/10/CleanShot-2025-10-29-at-17.25.30@2x-1024x691.png" width="1024" /></figure>\n\n\n\n<h2 class="wp-block-heading">The why?</h2>\n\n\n\n<p>Abilities are great, but it’s a new feature and this tool aims to both surface what is available on your site and also allow learning. I am not aiming to have a full on tool at this point, this was created rapidly as part of my own learning process. </p>\n\n\n\n<p>There is no real intention beyond experimentation. Maybe it will help you find out when something isn’t firing, maybe you can be more knowledgeable about what is loading and isn’t. Maybe you just are able to step outside code and discover how simple and cool abilities are.</p>\n\n\n\n<h2 class="wp-block-heading">The how</h2>\n\n\n\n<p>I sat down with Cursor and spent some time learning myself about abilities, working with the prompts of Claude and also iterating. This got me to a rapid v1 which I have today and now I am releasing. I strongly believe in this approach to get ideas out but I am not suggesting this is ready for production, this is an experiment.</p>\n\n\n\n<p>It’s very freshly brewed so there likely are code dragons and things to improve. I will iterate though and already want to work on adding seeing where issues might be and JSON documentation.</p>\n\n\n\n<h2 class="wp-block-heading">The where?</h2>\n\n\n\n<p>The Abilities Explorer lives just on <a href="https://github.com/karmatosed/abilitiesexplorer">GitHub</a>. I have also made it public, so enjoy use as will and if others find it useful that rocks.</p>\n\n\n\n<p>Props for early feedback, encouragement and reviews go to <a href="https://jonathanbossenger.com/">Jonathan Bossenger</a>, <a href="https://jonathanwold.com/">Jonathan Wold</a> and <a href="https://sirvelia.com/">Amadeu Arderiu</a>. Ideas are great but having them checked by humans helps us release them.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Oct 2025 17:16:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"binatethoughts.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:11:"Matt: Haiku";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150412";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"https://ma.tt/2025/10/haiku/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:624:"<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p>Live oaks reach branches<br />Sunlight graces every leaf<br />With gentle wisdom</p>\n</blockquote>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-150413" height="453" src="https://i0.wp.com/ma.tt/files/2025/10/IMG_0461-1024x768.jpeg?resize=604%2C453&quality=89&ssl=1" width="604" /></figure>\n\n\n\n<p>Inspired <a href="https://x.com/photomatt/status/1983560736464134282">by the not-haiku on my ITO EN tea</a>. (BTW the <a href="https://automattic.com/">Automattic home page is all haiku since 2009</a>.)</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Oct 2025 16:09:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"WPTavern: #191 – Arnas Donauskas on AI-Powered Troubleshooting for Websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wptavern.com/?post_type=podcast&p=200324";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"https://wptavern.com/podcast/191-arnas-donauskas-on-ai-powered-troubleshooting-for-websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:45496:"<details>Transcript<div>\n<p>[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how AI is taking on the burden of troubleshooting website issues, and making suggestions for improvements.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Arnas Donauskas. Arnas is a product manager at Hostinger, with over five years of experience in the web hosting industry. His journey began during college while working on his bachelor’s degree, when he needed to create a website and discovered WordPress as a beginner.</p>\n\n\n\n<p>His first foray into website building sparked his interest in the industry, eventually leading him to a career where he now develops products that help others launch their own online presence. Recently he’s been working with a team tasked with delivering tools and improvements to WordPress users to ease their journey on starting and maintaining websites.</p>\n\n\n\n<p>In this episode, Arnas shares insights from his presentation at WordCamp US in Portland, Oregon, where he discussed the future of fixing and optimizing websites with AI. For many WordPress users, managing site performance and troubleshooting errors can be time consuming and complex. Arnas and his team have been developing AI based solutions that not only help onboard new clients by automating website creation, but also proactively monitor and remediate website issues as they happen.</p>\n\n\n\n<p>We get into the details of how Hostinger’s AI tools identify, and automatically fix, critical website errors such as HTTP response issues, and how they’re pushing site optimizations through automated performance enhancements.</p>\n\n\n\n<p>Arnas explains the engineering challenges involved, the current state of success with automated fixes, and how user feedback is shaping the roadmap for new features like SEO analysis and accessibility improvements. He provides a behind the scenes look at how Hostinger tests and iterates on AI models, what kind of data is fed to those systems, and how the team balances automation with user control.</p>\n\n\n\n<p>If you are curious about how artificial intelligence is transforming WordPress hosting and site management, and what this means for the future of the web, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Arnas Donauskas.</p>\n\n\n\n<p>I am joined on the podcast by Arnas Donauskas Hello.</p>\n\n\n\n<p>[00:03:41] <strong>Arnas Donauskas:</strong> Hello. Thanks for having me today.</p>\n\n\n\n<p>[00:03:43] <strong>Nathan Wrigley:</strong> You are so welcome. We’re here at WordCamp US in Portland, Oregon. It is day two of the, kind of the conference, but it’s the first day of presentations and things like that. You are one of the presenters, and during the presentation you are going to be talking about fixing and optimising websites with AI.</p>\n\n\n\n<p>I wonder if we begin the podcast with an introduction to you. So I’d love to find out more about what you do, what your role is at Hostinger, and how you’ve got yourself in the whole AI space.</p>\n\n\n\n<p>[00:04:12] <strong>Arnas Donauskas:</strong> Yeah, would be glad to give a short overview. As Nathan introduced me, I’m Arnas Donauskas and I’m a product manager at Hostinger. And the whole web hosting industry, creating a website, I’ve been for more than five years. Well, I think my first interaction with WordPress was actually in my college when I was writing my bachelor’s degree. I needed a website at that point of time and I thought, okay, what should I do? What should I use? And I was very green back in the day. Everyone has to start somewhere.</p>\n\n\n\n<p>And the WordPress came in as one of the first results that I searched on Google. I gave it a go. At first there were some challenges, interesting cases, what should I do with it? But then website got up and running. I finished my bachelors degree, so that was nice.</p>\n\n\n\n<p>And at Hostinger I have a team, a squad, where we build various tools for clients who are using WordPress to make their journey smoother, to make their websites management easier, to make a whole, interacting with the online presence easier. So they would have tools that could assist them, you know, on day to day basis, how to get things done and how, you know, to get their first website started and running as fast as possible.</p>\n\n\n\n<p>[00:05:24] <strong>Nathan Wrigley:</strong> So it seems like the hosting space, this is a really perfect fit for AI, because you presumably are onboarding clients and they have no website. I mean, in many cases maybe they have and they’re migrating something from one place to another. But I imagine a lot of your clients are brand new, they’re starting a new project, a new business, or whatever it may be, and they want to get a leg up in building something quickly.</p>\n\n\n\n<p>And five years ago, no chance. You had to hire somebody, everything had to be done by a human being. And nowadays we’re seeing the rise of AI in these kind of onboarding processes where you go through some kind of wizard, and at the end it will spit out some approximation of a website which is suitable for your niche or what have you. And then you go in and you tinker and you make sure it’s exactly what you want.</p>\n\n\n\n<p>Is that the kind of tooling that you are doing, or are you doing something slightly different to that over at Hostinger?</p>\n\n\n\n<p>[00:06:12] <strong>Arnas Donauskas:</strong> Yes, we do have tools that are able to, and capable of, creating a website with AI prompt. You would tell what your website would like to be, and we have like a WordPress AI website builder that will build you a blog, an e-commerce based on a given prompt. So this is already a really head start of all of the things.</p>\n\n\n\n<p>But also looking from another perspective, it’s totally understandable to see people who don’t want to build the website with AI, but would like to get guidance how things get done. From one perspective, you can get guidance, how to build the website itself. From another, do I need to make any DNS zone changes on my website? And at this point of stage, AI can help all the way through. You just simply ask what you would like to do, what are the settings you want to tweak? And AI can give you a really, really detailed step, you know, how to change those things.</p>\n\n\n\n<p>One of the really nice examples I have, at Hostinger we have a Kodee, it’s a chat interface assistant that helps clients with various questions, and it does have information about the client itself and, you know, what actions it can do. And what trend I started to notice that clients know it’s an AI, and they start asking specific questions. Like, hey, here’s bulk text, can you edit that for me? Or can you give me more detailed steps how to do this and this? And the AI just gives those steps and clients just like, thumbs up, thanks. Have a nice day. And they just go on their thing.</p>\n\n\n\n<p>So I see this trend, and it’s really nice that the users like utilising these tools, because at the end of the day, it helps save time, maybe additional money and, you know, it’s a win for the user.</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> So I’ll just read the first sentence of the blurb. So the title of your presentation here is fixing and optimising websites with AI. And then the first sentence goes like this, and it encapsulates exactly what you’ve just said. This talk explores how AI can be used to automatically fix detected website errors and boost overall site performance.</p>\n\n\n\n<p>So we’ve got this whole side of AI, which is the onboarding, we’ll help you build the site. But then it sounds like you’ve also now got tooling to, okay, you’ve got a website, let’s fix it up. Let’s make the improvements and adjustments along the way.</p>\n\n\n\n<p>So, okay, then if we are allowing AI to crawl our website in some way, how does that actually work? What is going on? What is your platform doing to find the errors? I realise that’s a very broad question, but I’m going leave it like that.</p>\n\n\n\n<p>[00:08:31] <strong>Arnas Donauskas:</strong> Yeah. So actually why this idea to create such tool came into the light, it was actually one of the feedback points we gathered from one of the WordCamps. Maybe it was Europe. But then to add up to it, we saw the problem when clients, let’s say a website starts receiving an error, or it starts to load slowly, they are not sure where to start troubleshooting this. And we have thought, why not make this process automatic and remove this hassle step for the client?</p>\n\n\n\n<p>So how this tool, for troubleshooting the error, how it works. So at all times we are tracking all of our clients’ HTTP status. So basically, if there is no error, it’s 200, in most of the cases. There can be a permanent redirect HTTP status. But at all times we are tracking if it changed to an error code or no. If it did, then we are promptly informing the client, hey, we found an error on your website. It could be a 403 forbidden access, or 500, or a critical error. And we start informing the client, hey, an error was found, you can use our AI troubleshooter to automatically fix it.</p>\n\n\n\n<p>So when the client lands to the interface itself, we already gathered all of the logs, we removed all of the information that should not land for the AI, that he’s not using it to troubleshoot the error itself. And then AI has a list of actions it can do, whether it’s troubleshooting or optimising.</p>\n\n\n\n<p>And then based on the logs and our AI custom given prompt, it determines, this is the most likely action that will fix the site’s error. Or when it comes to optimising, here are like the listed settings you need to tweak to make that website go faster. And then at the end of the day, the client gets the error fixed or the website optimised.</p>\n\n\n\n<p>[00:10:21] <strong>Nathan Wrigley:</strong> So that’s really interesting. So here we’re talking about some sort of critical error. So your tooling is going out, in the same way that an uptime monitor would’ve done in the past. But the difference here though is that the uptime monitor traditionally just tells you the problem. You might get an email or a phone call or something, but then you’re kind of on your own. You do the troubleshooting.</p>\n\n\n\n<p>So the difference here is the AI then, it determines there’s a problem and then it offers suggestions. So you log into your control panel and it’s saying, okay, this is the most likely cause, here’s some things that you can do to remediate that problem.</p>\n\n\n\n<p>[00:10:53] <strong>Arnas Donauskas:</strong> Yes, but those suggestions are also being applied automatically because it’s totally normal, you could just go to ChatGPT, you say, here I have this error, what could I do to fix it? And the AI troubleshooter however, it does not suggest, it gives the action that can be applied on the spot. So if you had a one o’clock, 403 error, at one o’clock, five minutes, you could have it resolved without your actual manual input. So the tool itself automatically applies those fixes and does that for you.</p>\n\n\n\n<p>[00:11:26] <strong>Nathan Wrigley:</strong> Okay, that’s really curious because traditionally, I mean, obviously, I guess website hosting companies have had tooling around uptime monitoring and things like that in the past, but because your identifying piece, and the remediation piece, can access server logs and all of the infrastructure that you’ve got, it can identify the problem, figure out if that’s true, and then just crack on and do it.</p>\n\n\n\n<p>So you can implement it, well, without implementing it. You just wake up at eight in the morning, maybe get an email to say, well, at one o’clock this thing happened and then we did this so you were able to have another seven hours sleep, that’s fine. Yeah, that’s really interesting.</p>\n\n\n\n<p>[00:12:02] <strong>Arnas Donauskas:</strong> So one thing that we are also constantly working on is what automatic fixes we are capable to do. Because those are the ones where, you know, our developers work and make them so AI would have more, let’s call it options to pick from, based on the data it has, what went wrong. And this is, you know, where we have a mini roadmap, what we want to implement further, so we could increase the success rate of the fixed websites automatically.</p>\n\n\n\n<p>Because this is something we also track about. And I will mention this in my speech. So at this point of day, we have 70% success rate on fixing the website. And how it’s being calculated, that when a first fix was applied, it was an actual success and that error got resolved. So at this point of day it’s 70%, and roughly, in absolute numbers, we are fixing per month 16,000 of the websites.</p>\n\n\n\n<p>What’s the nicest part for me is that for 16,000 of websites some time was saved. Clients did not have to dig through a lot of information, and they got the problem resolved on the spot. Because imagine you have like a working business running, or you expect clients to come in and you get an error. What is the first thing you do? Like, it takes time. So this tool, you know, can prevent these problems and shorten the fixing journey.</p>\n\n\n\n<p>[00:13:20] <strong>Nathan Wrigley:</strong> Yeah, not just time, but it presumably stops you losing revenue, and the sort of slightly unquantifiable emotional distress that comes with having a website which isn’t working. And obviously if that’s your industry and your business is, I don’t know, e-commerce or something, it’s very important that comes up.</p>\n\n\n\n<p>So 70% sounds good, but obviously it means that 30%, there’s not the ideal outcome. What do you do in those scenarios where the thing was not solved? Do you log that and presumably your team then look at that and figure out over time, okay, how can we get that 30 to 20 to 10 and so on? And do you kind of roll back the remediation so that the thing which didn’t work, we unpick that and we just go back to where you were when the error occurred?</p>\n\n\n\n<p>[00:14:00] <strong>Arnas Donauskas:</strong> Yeah, so very good follow up question on this. So with the 30% that we do, we still run additional fixes. So when we do the first fix, we tracked what changed, and then the further success rate can happen, that the fact the was fixed either on the third try or like the fourth try, so that 30% lowers.</p>\n\n\n\n<p>But there are cases that none of the fixes helped, and it’s totally normal. Bigger website could be more complex problems, things like that happen. So then we proactively forward the user to our success specialist team who will assist on the spot. And they have all of the logs, what happened, what was tried, and what fixes were applied on the website on the spot.</p>\n\n\n\n<p>In any case, there are backups that can be reverted without any of the fixes applied. So those 10 to 15% that nothing helped at the end of the day, gets a direct help from our success team so we could still solve, or help solve, the problem for the user.</p>\n\n\n\n<p>[00:15:03] <strong>Nathan Wrigley:</strong> It’s kind of incredible that if we were to just rewind the clock five years, the stuff that you’ve just mentioned was nonsense. It could not happen. And yet we’ve got to the point now where you’re saying there’s a 70% success rate. I’m quite surprised it’s as high as that, so that’s amazing. And presumably, the ambition is to drive that up to 80 and 90 and what have you.</p>\n\n\n\n<p>But just the mere fact that it’s possible is pretty remarkable, that there’s a technology which, it’s kind of got your back, it’s this agent running in the background whose job it is to figure this stuff out and you don’t have to think about it.</p>\n\n\n\n<p>And I guess for your industry, you know, hosting in general, I presume a lot of the other companies are doing these kind of things. Over time, this will become the norm. It will just become a laundry list, one of the ticket items on the sales page. It’s, you know, we’ve got your AI agent monitoring the uptime, remediation is guaranteed. Maybe you’ll even get to like 99% of fixes or something like that in time. And it just kind of pushes what we’re going to expect from hosting companies like you. That’s fascinating. Really interesting.</p>\n\n\n\n<p>[00:16:04] <strong>Arnas Donauskas:</strong> Yeah. And as you’ve mentioned, five years ago, it could have been a lot of, let’s say problems or issues making this happen, because at that point of time you need to chew up a lot of information and, you know, do the thinking on that received information. But now when AI does have quite a powerful approach on this, and it’s able to handle such high amount of information, that’s when you know the heavy lifting is taken to that part, the end user is now getting the fixes done.</p>\n\n\n\n<p>As per norm on all of this fixing, I really would like to see that happen because it just helps out. You can spend your time on expanding, moving your business further, thinking of the new ideas what you could do, instead of maintaining the website. You know, there’s like a saying, it’s more fun to buy new parts to your car than replace the old ones or do the maintenance parts. So this is, I think, the same thing the website itself.</p>\n\n\n\n<p>[00:16:57] <strong>Nathan Wrigley:</strong> Yeah, it really does feel like this is going to be the future. And obviously you’ve now got these technologies which can make, well, it’s approximating intelligent decisions. Whereas before it was just sort of, I guess you were going through a binary, is it this? Yes. Okay. Move to the next step. Is it this? No. Okay. Go back to this step. Whereas now there can be this whole load of things that you can throw at it.</p>\n\n\n\n<p>And that brings me to the next question really. So you’ve just talked about all the critical things, so the website collapsing. So we do something to remediate that. What about the more, I don’t know, let’s say soft things.</p>\n\n\n\n<p>So for example, maybe it’s SEO. You know, we have gone around your website, we’ve scraped it a little bit like maybe Google Bot might do, and we’ve identified SEO problems. Or it could be accessibility problems, or it could be, goodness, I don’t know, you’ve just used inappropriate language here, we’ve got a better idea for a UVP at the top of the webpage. Does it stray into that as well? Is it more than just critical failure problems?</p>\n\n\n\n<p>[00:17:50] <strong>Arnas Donauskas:</strong> At this point of day, it’s more critical problems when the website is just full on down. But like, how I like to view the tools that we are building is whenever you build one tool, you receive clients’ feedback, you receive WordPress community feedback, where you can build more tools on top as a continuation to the first one. This is what I really like about all of this feedback culture.</p>\n\n\n\n<p>This is the upcoming thing, and I think it’s only a matter of time when our troubleshooter and the optimiser will appear in the WordPress admin panel, where it will be able to tell you, I see an image has disappeared on your website, just upload it to me, I will fix it to you. Or I see some SEO problems. Or like you’ve mentioned, accessibility problems, or that some of the grammar mistakes were found in some of your posts. Something like that. So this is only a matter of time.</p>\n\n\n\n<p>And why such approach was taken at this point of time is, we want to give users a tool that they could trust and be comfortable on using when it comes to the most critical problem or critical matter with the website related errors. So they know, okay, I can trust and use this tool, and fix my problem right away. And when that’s put on, then we can move to extensive features to the troubleshooter and optimiser as well.</p>\n\n\n\n<p>[00:19:09] <strong>Nathan Wrigley:</strong> Would it be fair to say that you are developing solutions like that, though? Is that the kind of thing which is on your product roadmap to get those kind of tools, the SEO, the image fixing, the alt text identifier, the I know, the accessibility identifier, those kind of things. They’re in the background? You are building those? They’re roadmap items are they?</p>\n\n\n\n<p>[00:19:26] <strong>Arnas Donauskas:</strong> I would say they are currently planned. Right now, what we have in the more recent backlog is how to reach my personal goal on this is 90% fixed rate. If you already have some plans, how it’ll be done. So a short sneak peek on it. We basically want to build like a way back machine on our AI troubleshooter, so it would know at any given time what happened to each of the file the customer has on their website. And it would be able to tell you, okay, I see that on this specific date, this single file was changed and that’s what led to a 500 error. I have a safe backup copy for it, I will restore it for you. User confirms. We do the restoration.</p>\n\n\n\n<p>Or AI will be able to determine, I have a fully working website backup of your site, these are the orders that could be potentially missed if that is an e-commerce case. And if you want to, we can go ahead and restore the website to a fully working version and get your site back up and running again.</p>\n\n\n\n<p>[00:20:26] <strong>Nathan Wrigley:</strong> We do live in interesting times, that’s for sure. You mentioned in the blurb for the talk, and I read the bit at the beginning, but I’ll just read it again. So your talk explores how AI can be used to automatically fix detected website errors, I think we’ve covered that, and boost overall site performance.</p>\n\n\n\n<p>Now that’s a different piece, isn’t it? So if we’re now looking at site performance, presumably we’re talking about from slow to fast. Something wrong to fix. So basically, I’m asking the exact same series of questions, but from a performance point of view, not the site has collapsed and there’s an error. What are the things that you’re looking for there?</p>\n\n\n\n<p>[00:20:59] <strong>Arnas Donauskas:</strong> To be fair with you, everything. So we look at everything when it comes to website performance. So we do like a benchmark result where we have our starting ground when it comes to optimising the website. And we are using Google Page Speed scores. I think it’s one of the most popular tools to benchmark the website to see what is loading slowly on it, what could be the potential problems with it. And then for each website individually, automatic fixes to images, JS, CSS minification are being applied, and the client then sees the improvement, whether it’s 10%, 20%.</p>\n\n\n\n<p>So right now what we currently have from the data itself, I believe it’s been running for two to three months right now, and we’ve been gathering data, how the websites are being optimised. So on average, mobile page speed score is being increased by 20, and the desktop is by 10%.</p>\n\n\n\n<p>But there’s a catch to it. These optimisation steps are safe. It means nothing bad will happen to the website after the optimisation steps, and the next step would be introducing risky steps that can affect how the website looks.</p>\n\n\n\n<p>What I have in mind by that is, lazy loading sometimes can mess up one of the images, it appears slowly or after a while. So these things could happen, but this will be like a separate step informing the client, hey, we did the safe part, but we could push this further with some of the risks. No worries, you will be able to revert everything on the spot if something bad happens. So this will be the next step of it, and I’m really intrigued to see how fast the websites can be.</p>\n\n\n\n<p>[00:22:35] <strong>Nathan Wrigley:</strong> Can you modify your hosting environment to be specific to my website, if you know what I mean? So if my website, for example, is, I don’t know, a brochure website, I’ve got five pages, you could cache that entirely. Really easy to do. But, okay, this website over here, a different one that I’ve got, it’s a WooCommerce website, there’s a whole different load of caching that might go on, there’s a whole different load of optimisations that go on there. Do you take that burden on, or is it more of a, okay, we’ve got this thing, you tick a box and now we’re going to do the performance thing? Will it figure all that stuff out, or are there tick boxes where I can go, do this but don’t do this, do this but don’t do this? How does it work?</p>\n\n\n\n<p>[00:23:13] <strong>Arnas Donauskas:</strong> So each optimisation step to increase the performance is being applied to each website individually. It checks loading slowly. Right now, there is no possibility to customise the optimisation steps that you can do, but we are planning to integrate logic to the AI, or like past information for each type of website type. What caching should be applied on specific pages if the image is a landing one, or is it like a product image? So to give more extensive knowledge to the AI so it would be able to better determine how to approach different website types. But for now, what we check, still settings are unique to each website, but not to such extensive customisation.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> You’ve laid before us a really interesting engineering challenge. These problems exist in terms of performance, we’ve got to put a bunch of engineers on it, and they’re going to figure out this AI way of solving that. But how do you communicate the work that the AI is done to the people that want to know it’s been done?</p>\n\n\n\n<p>Because in a way, I kind of want to know that’s happened to my website, but at the same time, I kind of don’t. I don’t want to be getting six emails a day saying, okay, we updated this image, oh, and then another email, we did x, and we did. But you’ve got to let me know that that’s happened. In some way, you have to communicate the value to me that, look at all this fabulous stuff we’re doing. But I kind of want to know, but I kind of don’t want to know. So it’s a difficult tightrope to tread. I’m just wondering how you manage that.</p>\n\n\n\n<p>[00:24:36] <strong>Arnas Donauskas:</strong> Yeah, yeah. So at the end of each optimisation, client is getting an impacted result, did it increase, and by how much? And they are getting a full log, what was done on the website. And we are also trying to display that log to as most simple things as possible to understand, because some of those settings could sound, you know, very big words. But there’s actually very simple things that were done on the website. So we’re communicating that part to the users at the end of each optimisation as well.</p>\n\n\n\n<p>[00:25:05] <strong>Nathan Wrigley:</strong> Okay, so you’re kind of making it easier to understand basically. You’re hoping to use normal language to explain something fairly technical. Yeah, okay. And summarising it, not sending an email for every single thing. And presumably over time the email’s become less and less anyway because, let’s say I migrate a website to your platform, the AI gets involved, and I’m imagining there’s more at the beginning, it’s front loaded. Oh, look, there’s this and this and this and this. And then slowly over time, oh, there’s less. We did it. It’s done. But, oh, new plugin, new thing. I’m guessing that you communicate less over time.</p>\n\n\n\n<p>[00:25:37] <strong>Arnas Donauskas:</strong> With such optimisation things, yes, via email. I would say it’s less via email, more via interface. And I would say that at this point, it’s enough for a user to grasp the idea of what was done.</p>\n\n\n\n<p>Why I say this? Because the amount of time the clients spend in the interface reviewing the optimisations and how many of them interact with it is quite high. I believe with optimisations it’s 70% of the users that actually started the migration, completed, you know, all of the interaction with the interface. And they’re spending approximately like from 10 to 15 minutes with it.</p>\n\n\n\n<p>So I would say these are pretty good numbers. But you gave a very good point for the users’ clients who are more advanced. And perhaps it would be a good improvement point to give them an option to download all extensive logs, what was done, to see just what happened actually in depth, not just rephrased wording for some technical parts.</p>\n\n\n\n<p>[00:26:36] <strong>Nathan Wrigley:</strong> Yeah, I think it’s a really difficult tightrope to tread because every time that your AI does something and it had a beneficial impact on my website, that’s good for me, but it’s also good for you because it builds that relationship, doesn’t it? You know, oh, look what the platform’s done. It’s brilliant. I didn’t have to lift a finger. Just came as part of the package. Fabulous. I’m happy with that.</p>\n\n\n\n<p>But you just don’t want to overdo that communication because at some point it’s like, oh, you lose sight of it. And then the critical one will arrive where the website’s collapsed and, yeah, it’s another one, it just goes in the bin. So I guess there’s a tightrope to tread, which is kind of interesting.</p>\n\n\n\n<p>How do you actually find these errors then? Do you have something akin to Google Bot, which is going and looking at the front end of the website as a human being would see it, if you like, and sort of scraping around inside the DOM, looking at screenshots and, you know, okay, yeah, we see that image isn’t, I don’t know, so just an open-ended question really.</p>\n\n\n\n<p>[00:27:28] <strong>Arnas Donauskas:</strong> Since each of the website that we are troubleshooting are hosted with us, we are able to, you know, detect. Because the primary source that we are using to determine that something bad happened is the HTTP response.</p>\n\n\n\n<p>[00:27:41] <strong>Nathan Wrigley:</strong> Right. That’s straightforward. Yeah.</p>\n\n\n\n<p>[00:27:42] <strong>Arnas Donauskas:</strong> Yeah. So whenever that changes, we are able to know because each of the website is hosted with us on our infrastructure. So this is the most, the quickest and most straightforward approach we can use to determine that something bad happened. So this is the one we are running with. And quite good accuracy, unless there’s like a, some CDNs in that case. And this could be sometimes a problem because not always the true error will come out. But yeah, this is the method we are using.</p>\n\n\n\n<p>[00:28:09] <strong>Nathan Wrigley:</strong> But on the performance side, presumably that’s slightly different because, you know, you mentioned lazy loading images or something, you’ve got to have some metrics and telemetry to say, we’ve got lazy loading images, okay, how do we deal with that?</p>\n\n\n\n<p>[00:28:20] <strong>Arnas Donauskas:</strong> So with the performance part, clients are able to, you know, at any given time to initiate the optimisations. We will do the performance test to see if it actually needs an optimisation, because sometimes clients have very perfectly optimised websites, and they’re working like a speed. But we are occasionally running page speed performance tests, on weekly basis, I believe. And if we detect, okay, this website could be improved, then clients are being informed that, hey, you can do some optimisation steps that are automatic and you can go ahead and start the optimisation process.</p>\n\n\n\n<p>[00:28:53] <strong>Nathan Wrigley:</strong> Okay, got it. Thank you. Curious thing that you are in this game of tennis, I presume, with the AI models. I’m presuming, I could be wrong, but I’m presuming that you are using AIs that we are familiar with. So I’m just going to drop a few names that I know. Things like Gemini, Claude, ChatGPT and things like that. I’m presuming there’s some connection that you’ve got with those. Maybe you have your own, I don’t know.</p>\n\n\n\n<p>Given that they seem to change at a breathtaking pace, and in some cases the changes that they seem to ship kind of seem to degrade their capacity to do things. We’ve had a recent ChatGPT 5 update, which I think many people felt perhaps in certain scenarios was a backward step. How do you keep up with this?</p>\n\n\n\n<p>[00:29:33] <strong>Arnas Donauskas:</strong> Testing, straightforward testing, but very good point on the whole different models and the providers on it. We simply do tests with each of the models. We scout around, we see, or it looks very promising, we test how it performs, and there are several points. How fast it can grasp the information and return back to us. So how long the request took time. Some of the models took like 10 seconds, some of them took 5. So we want the client to get the faster result as fast as possible.</p>\n\n\n\n<p>And then there’s the second part, it’s the accuracy of the returned information. Because one of the learned lessons I will be sharing in my speech is that, we noticed that when newer models came in, how their accuracy was way better and the time to handle information was very shorter. So since we have like developers who are working on the AI models itself, we just always test to see if there’s something better that we could ship to our users so they would have better outcome on their end as well.</p>\n\n\n\n<p>[00:30:35] <strong>Nathan Wrigley:</strong> Yeah, it’s fairly straightforward, isn’t it? It’s testing, testing, more testing, and go with the thing which provides the best tested answer. But curiously though, you must have applied a ton of engineering time into this endeavor. So there’s a load of people on the ground, that must cost Hostinger quite a bit of money. And then presumably there’s quite a lot of money being sent to these AI agents. But I’m guessing it’s hard to justify a price increase to your end users.</p>\n\n\n\n<p>So it must be kind of a fairly difficult business decision. How much of this can you do? Because you could AI forever, you know, and just keep going and going and going and endless cycles. So I’m guessing from a business point of view, there’s a, again, another tightrope to tread. How much can you do? Or is this more a case of, is this stuff a premium thing that you offer? Do you have to pay an additional fee to get access to this stuff?</p>\n\n\n\n<p>[00:31:21] <strong>Arnas Donauskas:</strong> No. No additional fee. AI troubleshooter and optimiser is pre included with all of the hosting plans we offer for our clients base. And the price for that did not change because this tool was introduced.</p>\n\n\n\n<p>You’re right, it took some time to deliver final versions of the products, approximately seven to eight months. But it was all worth it, I think, because clients can now automatically do things and don’t have to spend time themselves.</p>\n\n\n\n<p>And from a company point of view, we just want to deliver best user experience they could have and, you know, that they could trust us even when the website is down with an error and how we can solve it, and what we can do the quickest or how to, you know, assist user on optimising the site.</p>\n\n\n\n<p>[00:32:08] <strong>Nathan Wrigley:</strong> It’s the market at work, isn’t it? Essentially. You’re trying to make your offering different and unique and offer something which adds value, and so you take the hit, I guess.</p>\n\n\n\n<p>Do you want to get to the point where everything is completely automated? I mean, is that a desirable outcome? Would it be something that you’d like to see where the human is completely out of the loop? Or do you always want to have an option for a confirm button or a roll, not rollback, we always want the rollback.</p>\n\n\n\n<p>But it always feels like the light at the end of the tunnel here is that the human doesn’t need to be involved at all. It would be desirable if I could get up and be a hundred percent confident that my website, for all of the things that you did overnight, is better. And I don’t have to involve myself in that at all. But equally, there’s a bit of me which always wants the confirm button. I want to be able to see, well, not that one. Yes, that one. We’ll do that.</p>\n\n\n\n<p>[00:32:56] <strong>Arnas Donauskas:</strong> I think confirmable actions will be there all the time, or most of the time. Because at the end of the day, this is the user’s website that the changes are being applied to, and the user is in control. Would you like to do those changes, would you not? One of the thoughts, I believe we discussed with our colleagues, what we have 100% fixed rate? Should we give users an option, just run everything, I trust this completely? It could be an option. But still, at the end of the day, this is the user’s website. It’s their business, it’s their blog, and we want to give best suggestions, but the user is the one who’s saying, yes, I would like to do that, or, no, I don’t want to see this.</p>\n\n\n\n<p>[00:33:39] <strong>Nathan Wrigley:</strong> I guess you’re trying to get to the point where the confirmed decision is just really obvious. You want to go in and be entirely confident that, yep, I’m going to confirm it because I have this trust, but equally, there’s an option to not confirm it. That seems to be where the whole AI thing is going. The humans are always in the loop somewhere and it’s always that final confirmation step. And I think if we lose sight of that, we’re probably in a bit of trouble.</p>\n\n\n\n<p>One of the questions I have as well is about WordPress, obviously, we’re at WordCamp US, this great big open source thing. And it brings to mind the question about these models, and the fact that they are entirely proprietary, you know, ChatGPT, Gemini, Claude, and all of these things. They’re having a lot of our data, we’re allowing them into the backend of our websites, but they, I don’t know if they have any open source models which are using. Are you shipping data to them? How does it align with the whole open source thing that WordPress is so keen to promote?</p>\n\n\n\n<p>[00:34:31] <strong>Arnas Donauskas:</strong> Oh, very good question I can say. And it’s true that different models look like different silos. Different companies, they have different approaches what they do. But I really liked one of the comments, I believe I read on the Reddit, on all of the AI stuff. And it applies also on such websites. So for example, you’re a user who likes to explore things, and you want to try and fix websites with AI and do that automatically. A free model for the ChatGPT or any other AI model will be more than enough to run, as long as you have your prompt.</p>\n\n\n\n<p>It will take some experiment times, that’s for sure, but everything could be actually run free on this part. So this is more, you know, into the open source area. But of course, when there are paid models and stuff like that, this could be, you know, one day could be tricky.</p>\n\n\n\n<p>Perhaps we will have a fully open source that anyone could be willing to use without any additional charges. Time will show on this. But now, a lot of companies, people are creating tools that they allowed to do free trials or free for some time. So I think this is a matter of question on this as well, yeah.</p>\n\n\n\n<p>[00:35:40] <strong>Nathan Wrigley:</strong> Yeah, I mean it really does seem like a really exciting time, in tech in general, but also WordPress in general. But it’s kind of really interesting to see the way that WordPress and hosting company’s interfacing through AI. And it does seem like there’s a lot of interesting stuff happening on your side.</p>\n\n\n\n<p>Yeah, it’s been fascinating talking to you today, trying to explore this a little bit more. Where can we find you, Arnas? If we want to reach out and discover more about you or Hostinger, where’s the best place to go?</p>\n\n\n\n<p>[00:36:05] <strong>Arnas Donauskas:</strong> So if you want to reach out directly to me, I’m always happy to do that via LinkedIn. I have my full profile set up so we can reach out through there. If you’re a Hostinger client and you have some feedback, just drop it to our support chat. I’m the one who always reads them, and I might even get directly in touch with you via one of the forms because I always keep an eye of our client’s feedback and I try to contact them as often as possible to follow up on some of the feedbacks they share.</p>\n\n\n\n<p>[00:36:32] <strong>Nathan Wrigley:</strong> Well, Arnas, thank you so much for chatting to me today and prizing open this subject. I feel that this conversation is going to get more and more in depth, and more complicated as the years go by. But in 2025, good to know where we’re at. Thank you.</p>\n\n\n\n<p>[00:36:43] <strong>Arnas Donauskas:</strong> Yeah. Thank you for inviting me. It was an honor.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href="https://www.linkedin.com/in/arnas-donauskas/">Arnas Donauskas</a>.</p>\n\n\n\n<p>Arnas is a product manager at Hostinger, with over five years of experience in the web hosting industry. His journey began during college while working on his bachelor’s degree, when he needed to create a website and discovered WordPress as a beginner. This first foray into website building sparked his interest in the industry, eventually leading him to a career where he now develops products that help others launch their own online presence. Recently he’s been working with a team tasked with delivering tools and improvements to WordPress users to ease their journey on starting, and maintaining websites.</p>\n\n\n\n<p>In this episode, Arnas shares insights from his presentation at WordCamp US in Portland, Oregon, where he discussed the future of fixing and optimising websites with AI. For many WordPress users, managing site performance and troubleshooting errors can be time-consuming and complex. Arnas and his team have been developing AI-based solutions that not only help onboard new clients by automating website creation, but also proactively monitor and remediate website issues as they happen.</p>\n\n\n\n<p>We get into the details of how Hostinger’s AI tools identify, and automatically fix, critical website errors, such as HTTP response issues, and how they’re pushing their site optimisations through automated performance enhancements. Arnas explains the engineering challenges involved, the current rate of success with automated fixes, and how user feedback is shaping the roadmap for new features like SEO analysis and accessibility improvements.</p>\n\n\n\n<p>He provides a behind-the-scenes look at how Hostinger tests and iterates on AI models, what kind of data is fed to these systems, and how the team balances automation with user control.</p>\n\n\n\n<p>If you’re curious about how artificial intelligence is transforming WordPress hosting and site management, and what this means for the future of the web, this episode is for you.</p>\n\n\n\n<h2 class="wp-block-heading">Useful links</h2>\n\n\n\n<p><a href="https://www.hostinger.com">Hostinger</a></p>\n\n\n\n<p><a href="https://www.hostinger.com/blog/kodee">Kodee by Hostinger</a></p>\n\n\n\n<p><a href="https://us.wordcamp.org/2025/session/fixing-and-optimizing-websites-with-ai/">Fixing and Optimizing websites with AI</a> – Arnas’ presentation at WordCamp US 2025</p>\n\n\n\n<p><a href="https://developers.google.com/speed">Google’s PageSpeed tools</a></p>\n\n\n\n<p><a href="https://www.linkedin.com/in/arnas-donauskas/">Arnas on LinkedIn</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Oct 2025 14:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Nathan Wrigley";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"Open Channels FM: How a Camping Trip Illustrates the Power of Storytelling in Tech";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111065";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"https://openchannels.fm/how-a-camping-trip-illustrates-the-power-of-storytelling-in-tech/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:326:"Rae Morey, WordPress journalist and podcast host, recently shared a story on Open Channels FM about a camping trip that revealed just how effective storytelling can be in business. After spending a rough night on the ground during a camping trip, Rae realized, “I woke up with a sore back. I’m getting old. And I […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Oct 2025 10:54:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: Grokipedia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150403";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:33:"https://ma.tt/2025/10/grokipedia/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2118:"<p>It’s very interesting to compare <a href="https://en.wikipedia.org/wiki/Matt_Mullenweg">my Wikipedia article</a> and <a href="https://grokipedia.com/page/Matt_Mullenweg">my Grokipedia article</a>. The Grokipedia version is much, much longer, and does a better job of listing my accomplishments versus some random recent controversy. (Will someone reading about me a hundred years from now care that WordPress briefly had a sustainability team as one of its dozens of teams?) But at least everything on Wikipedia is true! On Grokipedia:</p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p>WooCommerce, an open-source e-commerce platform integrated with WordPress, enables online stores and has facilitated over $1 trillion in annual commerce as of 2023.</p>\n</blockquote>\n\n\n\n<p>While I actually believe someday, probably around 2037, Woo will facilitate a trillion in commerce annually, that number is off by a couple orders of magnitude right now. <img alt="🙂" class="wp-smiley" src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" style="height: 1em;" /></p>\n\n\n\n<p>As with all software, we shouldn’t come to conclusions <a href="https://ma.tt/2010/11/one-point-oh/">based on the 1.0</a> but rather look to its vector and speed of iteration, so I’ll reserve judgment on Grokipedia for now.</p>\n\n\n\n<p>I <em>love</em> Wikipedia. I’ve been a contributor since it started, and I think it embodies Open Source ideals in a really beautiful way. For a little love letter to Wikipedia check out this article by Jason Koebler, <a href="https://www.404media.co/grokipedia-is-the-antithesis-of-everything-that-makes-wikipedia-good-useful-and-human/">Grokipedia Is the Antithesis of Everything That Makes Wikipedia Good, Useful, and Human</a>. My take: If you think there’s something wrong with the Wikipedia, the way to fix it is to get involved and contribute. They have a robust community.</p>\n\n\n\n<p>As a bonus, I learned today that the <a href="https://wikimediafoundation.org/">Wikimedia Foundation runs on WordPress</a>! What an honor.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 23:49:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"Jake Spurlock: Introducing Today: An RSS Reader for the Modern Age";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://jakespurlock.com/?p=51811";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://jakespurlock.com/2025/10/introducing-today-an-rss-reader-for-the-modern-age/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4853:"<p>I’m thrilled to announce the release of <strong><a href="https://apps.apple.com/us/app/today-rss-reader/id6754362337">Today</a></strong>, a new RSS reader for iOS that I’ve been building with a lot of love and a little help from AI.</p>\n\n\n\n<h3 class="wp-block-heading">A Love Letter to RSS</h3>\n\n\n\n<p>I’ve loved RSS forever. It’s the open web at its finest—a way to follow the sites and writers you care about without algorithmic interference, without ads dictating what you see, without being locked into a single platform. When Google shut down Google Reader in 2013, it left a hole in my heart that never quite healed. I tried every replacement under the sun, but none of them felt quite right.</p>\n\n\n\n<p>So I decided to build my own.</p>\n\n\n\n<h3 class="wp-block-heading">RSS at Automattic</h3>\n\n\n\n<p>This week, I hit my seven-year anniversary at Automattic, where RSS feeds are part of our daily workflow. We use them to stay on top of news, monitor site updates, track support issues, and keep connected to the broader WordPress community. RSS isn’t just a nostalgic technology for us—it’s an essential tool.</p>\n\n\n\n<p>Coincidentally, my seven-year anniversary fell on the same day as Matt Mullenweg’s twenty-year anniversary of founding WordPress and Automattic. As he <a href="https://ma.tt/2025/10/counter-claims/">reflected on two decades</a> of building in the open, I found myself thinking about what it means to create tools that empower people, that respect the open web, and that put users in control of their own experience.</p>\n\n\n\n<p>That’s what Today is all about.</p>\n\n\n\n<h3 class="wp-block-heading">From WordPress to Swift: Porting Texturize</h3>\n\n\n\n<p>One of my favorite technical achievements in this project was porting WordPress’s <code>texturize</code> function to Swift. For those unfamiliar, <code>texturize</code> is the unsung hero that transforms plain ASCII quotes into beautiful curly quotes, fixes dashes, and handles all those typographic niceties that make text look polished and professional.</p>\n\n\n\n<p>WordPress has been perfecting this code for over twenty years, handling edge cases in dozens of languages. Rather than reinvent the wheel, I brought that wisdom into Today. Now your RSS article titles look as good on iOS as they do on the web.</p>\n\n\n\n<h3 class="wp-block-heading">AI, But Just a Little (And All Local)</h3>\n\n\n\n<p>Here’s where Today gets interesting. I’ve added AI features—but deliberately kept them minimal, focused, and completely local to your device. No cloud processing, no data collection, no privacy concerns.</p>\n\n\n\n<p>The AI does two things:</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Context and summaries:</strong> When you have dozens of unread articles, Today can generate a quick newsletter-style digest with commentary, helping you understand what’s worth reading right now.</li>\n\n\n\n<li><strong>Surface interesting articles:</strong> Ask the AI what you should read, what’s trending, or what’s new, and it’ll point you to the articles that matter most based on your reading habits.</li>\n</ul>\n\n\n\n<p>It’s just enough AI to be helpful without being overwhelming. And because it runs entirely on-device using Apple Intelligence, your reading habits stay private.</p>\n\n\n\n<h3 class="wp-block-heading">Built for the Open Web</h3>\n\n\n\n<p>Today is my attempt to bring back what made Google Reader great: a clean, focused reading experience that puts you in control. Import your feeds via OPML, organize them however you like, and enjoy reading without distractions.</p>\n\n\n\n<p>The app supports background sync, so your feeds stay fresh throughout the day. It handles both RSS and Atom feeds. And yes, it works beautifully with WordPress sites—because of course it does.</p>\n\n\n\n<h3 class="wp-block-heading">Download Today</h3>\n\n\n\n<p>Today is available now on the App Store for iOS 18 and later. It’s free to download, and I’d love to hear what you think.</p>\n\n\n\n<p>Whether you’re an RSS veteran who never stopped missing Google Reader, or someone discovering the power of RSS feeds for the first time, I think you’ll find something to love in Today.</p>\n\n\n\n<p>Here’s to the open web. Here’s to reader-controlled algorithms. And here’s to RSS, still going strong after all these years.</p>\n\n\n\n<p><a href="https://apps.apple.com/us/app/today-rss-reader/id6754362337">Download Today on the App Store →</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p><em>P.S. If you’re curious about the technical details, I built Today using SwiftUI and SwiftData, with Apple’s NaturalLanguage framework powering the local AI features. The whole project is a love letter to both RSS and native iOS development.</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 22:56:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jake Spurlock";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"WordPress.org blog: WordPress 6.9 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=19253";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2025/10/wordpress-6-9-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5097:"<p>WordPress 6.9 Beta 2 is now ready for testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.9 Beta 2 in any of the following ways:<br /></p>\n\n\n\n<figure class="wp-block-table"><table class="has-fixed-layout"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href="https://wordpress.org/plugins/wordpress-beta-tester/"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href="https://wordpress.org/wordpress-6.9-beta2.zip">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href="https://make.wordpress.org/cli/"> WP-CLI</a> command: <br /><code>wp core update --version=6.9-beta2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href="https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn">6.9 Beta 2 WordPress Playground instance</a> to test the software directly in your browser. No setup is required–just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href="https://make.wordpress.org/core/6-9/">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Do check the<a href="https://make.wordpress.org/core/"> Make WordPress Core blog</a> for <a href="https://make.wordpress.org/core/tag/6-9/">6.9-related posts</a> in the coming weeks for more information. Thank you to everyone who contributes by testing! </p>\n\n\n\n<p><strong>Catch up on what’s new in WordPress 6.9</strong>: Read the <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class="wp-block-heading">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the<a href="https://wordpress.org/support/forum/alphabeta/"> Alpha/Beta area</a> of the support forums or directly to<a href="https://core.trac.wordpress.org/newticket"> WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of<a href="https://core.trac.wordpress.org/tickets/major"> known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the<a href="https://make.wordpress.org/test/"> testing initiatives in Make Core</a> and join the<a href="https://wordpress.slack.com/messages/core-test/"> #core-test channel</a> on<a href="https://wordpress.slack.com/"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class="wp-block-heading">Beta 2 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 2 contains more than 33 Editor updates and fixes since the Beta 1 release, including 28 tickets for WordPress core.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-22&until=2025-10-28">GitHub commits for 6.9</a> since October 21, 2025</li>\n\n\n\n<li><a href="https://core.trac.wordpress.org/query?status=closed&changetime=10%2F22%2F2025..10%2F28%2F2025&milestone=6.9&col=id&col=milestone&col=owner&col=type&col=priority&order=id">Closed Trac tickets</a> since October 21, 2025</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">A Beta 2 haiku</h2>\n\n\n\n<p><em>Morning dew returns,</em></p>\n\n\n\n<p><em>Small fixes bloom in silence—</em></p>\n\n\n\n<p><em>Code finds its balance.</em></p>\n\n\n\n<p class="has-text-align-right"><em>Props to <a class="mention" href="https://profiles.wordpress.org/davidbaumwald/"><span class="mentions-prefix">@</span>davidbaumwald</a>, <a class="mention" href="https://profiles.wordpress.org/wildworks/"><span class="mentions-prefix">@</span>wildworks</a> , <a class="mention" href="https://profiles.wordpress.org/krupajnanda/"><span class="mentions-prefix">@</span>krupajnanda</a> & <a class="mention" href="https://profiles.wordpress.org/mosescursor/"><span class="mentions-prefix">@</span>mosescursor</a></em> <em>for proofreading and review.</em></p>\n\n\n\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 15:23:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Akshaya Rane";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Open Channels FM: Episode Milestones and Back Behind the Mic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111796";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://openchannels.fm/episode-milestones-and-back-behind-the-mic/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:135:"Bob’s gearing up for episode 700. He reflects on milestones, announces the end of solo episodes, and hints at more guest chats ahead.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 13:42:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Matt: AI NYC Event";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150397";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:35:"https://ma.tt/2025/10/ai-nyc-event/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:322:"<p>On November 5<sup>th</sup> at our Noho office the legendary <a href="https://www.borthwick.com/">John Borthwick</a> (investor in Twitter, Tumblr, Buzzfeed, Digg, Venmo…) and I will have a conversation on the future of the Open Web and human-centered AI. <a href="https://luma.com/fy86k4w5">Please join us</a>!</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Oct 2025 03:00:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"Open Channels FM: The Open Web, A History of an Ideal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=111756";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://openchannels.fm/the-open-web-a-history-of-an-ideal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:196:"The open web is a decentralized, accessible space rooted in collaboration and innovation. From its beginnings with TCP/IP to modern movements, it emphasizes user control over content and identity.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 Oct 2025 11:27:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Matt: Time Zones";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150385";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:33:"https://ma.tt/2025/10/time-zones/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2239:"<p>If you like rabbit holes, a wonderful way to spend your Sunday is in the <a href="https://zachholman.com/posts">writing of Zach Holman</a>, an early engineer at Github and Gitlab.</p>\n\n\n\n<p>All are good, but a particular favorite of mine is <a href="https://zachholman.com/talk/utc-is-enough-for-everyone-right">UTC is enough for everyone …right?</a> You don’t need to code to appreciate that time is a construct, that has evolved over time. “At noon in DC, it was 12:08 in Philly.” Time zones introduce particular complexity because, besides obvious things like Daylight Saving Time starting and stopping at different times at different places in history and geography. If you do write code, you’ve probably come across things like <a href="https://www.epochconverter.com/">Epoch Time</a>.</p>\n\n\n\n<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">\n<p>The <strong>Unix epoch</strong> (or <strong>Unix time</strong> or <strong>POSIX time</strong> or <strong>Unix timestamp</strong>) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z). Literally speaking, the epoch is Unix time 0 (midnight 1/1/1970), but ‘epoch’ is often used as a synonym for Unix time. Some systems store epoch dates as a signed 32-bit integer, which might cause problems on January 19, 2038 (known as the Year 2038 problem or Y2038).</p>\n</blockquote>\n\n\n\n<p>I’ve spent far too many hours on the <a href="https://www.php.net/manual/en/function.date.php">PHP date manual page</a> and the related comments (now gone! I used to have a few, they probably retired because they were on earlier versions of the language).</p>\n\n\n\n<p>As a bit of lore for Zach he might appreciate, I’ll share that when writing some of the first logging and data processing systems for <a href="https://akismet.com/">Akismet</a>, I divided the files using <a href="https://en.wikipedia.org/wiki/Swatch_Internet_Time">Swatch Internet Time</a> to give me a consistent balance of dividing a day, but still doing things as real-time as possible. The anti-spam learning system would update about every 86 seconds.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 Oct 2025 03:50:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Akismet: Happy 20th Birthday Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://akismet.com/?p=284642";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://akismet.com/blog/happy-20th-birthday-akismet/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1522:"<div class="wp-block-image">\n<figure class="aligncenter size-large"><img alt="" class="wp-image-284643" height="720" src="https://akismet.com/wp-content/uploads/2025/10/akismet-20.png?w=720" width="720" /></figure></div>\n\n<p>Akismet was launched 20 years ago today, when Automattic founder<a href="https://ma.tt/2005/10/akismet-stops-spam/"> Matt Mullenweg announced it on his blog</a> in a post describing what Akismet was and what it could become.</p>\n\n<p>The internet has changed a lot in the past 20 years!</p>\n\n<p>In 2005, the internet was primarily a desktop experience, dominated by dial‑up or early broadband connections, and social media was in its infancy with platforms like MySpace just beginning to gain traction.</p>\n\n\n<p>Now in 2025, the internet is woven into the fabric of our lives, no longer a separate experience but an invisible thread connecting us all. We carry it everywhere in our pockets, speak to it in our homes and rely on it for almost everything. High-speed internet keeps us constantly connected and AI quietly shapes much of what we read, watch, and buy. This has transformed how and where we work as well as making the internet a far more immersive and integral part of daily life than it was two decades ago.</p>\n\n\n<p>However one thing has remained the same – spammers continue to try and evade site defenses to spread their content and Akismet continues to defeat them. Saving moderation time lets people focus on what really matters: creating, connecting, and sharing.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Oct 2025 23:00:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Peter Westwood";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"Gutenberg Times: Gutenberg Changelog #123 – WordPress 6.9 and Gutenberg 21.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:53:"https://gutenbergtimes.com/?post_type=podcast&p=42419";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"https://gutenbergtimes.com/podcast/gutenberg-changelog-123-wordpress-6-9-and-gutenberg-21-9/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:57887:"<p>In this episode, Birgit Pauli-Haack and Isabel Brison dive into WordPress 6.9 and Gutenberg 21.9. They discuss major updates such as collaborative block-level comments (notes), expanded template management, the new command palette, and foundational block visibility features. New blocks like the accordion, math, and terms query block are highlighted, alongside enhancements in typography and time-to-read. They explore improvements aimed at editorial teams, workflow flexibility, and agency needs, while also touching on ongoing experiments like PHP-only blocks and global styles APIs. The episode wraps with practical advice for developers and encouragement to test out the latest beta features.</p>\n\n\n\n<p><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-123-wordpress-6-9-and-gutenberg-21-9/#shownotes">Show Notes</a> / <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-123-wordpress-6-9-and-gutenberg-21-9/#transcript">Transcript</a></p>\n\n\n\n<ul class="wp-block-list">\n<li>Editor: <a href="https://www.linkedin.com/in/sandy-reed/">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href="https://markuraine.com/">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href="https://icodeforapurpose.com">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class="has-larger-font-size" id="shownotes"><strong>Show Notes</strong></p>\n\n\n\n<h2 class="wp-block-heading">Special guest: Isabel Brison </h2>\n\n\n\n<ul class="wp-block-list">\n<li>GitHub <a href="https://github.com/tellthemachines">@tellthemachines</a></li>\n\n\n\n<li>WordPress <a href="https://profiles.wordpress.org/isabel_brison/">@isabel_brison</a></li>\n\n\n\n<li>X (former Twitter) <a href="https://twitter.com/ijayessbe">@ijayessbe</a></li>\n</ul>\n\n\n\n<p><strong>Previous episodes: </strong></p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/">Episode #93</a></li>\n\n\n\n<li><a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-84-gutenberg-15-9-and-16-0-wordpress-6-3/">Episode #84</a></li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">WordPress 6.9</h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">WordPress 6.9 Beta 1 </a></li>\n\n\n\n<li><a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">Help Test WordPress 6.9</a></li>\n\n\n\n<li><strong>Developer Blog articles</strong>\n<ul class="wp-block-list">\n<li><a href="https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/">Styling accordions in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/">Border radius size presets in WordPress 6.9</a></li>\n\n\n\n<li><a href="https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/">Registering custom social icons in WordPress 6.9</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class="wp-block-heading">Gutenberg </h2>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://github.com/WordPress/gutenberg/releases/tag/v21.9.0">Gutenberg 21.9</a></li>\n\n\n\n<li><a href="https://make.wordpress.org/core/2025/10/28/gutenberg-21-9-october-22/">Gutenberg 21.9 (October 22)</a></li>\n\n\n\n<li><a href="https://github.com/WordPress/gutenberg/pull/72464/">Styles: Move global styles data logic to a dedicated package #72464</a></li>\n</ul>\n\n\n\n<p class="has-large-font-size">Stay in Touch</p>\n\n\n\n<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">\n<ul class="wp-block-list">\n<li>Did you like this episode? <a href="https://lovethepodcast.com/gutenbergchangelog"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href="https://twitter.com/gutenbergtimes">@gutenbergtimes </a>and <a href="https://twitter.com/bph">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href="https://gutenbergtimes.com/itunes/">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class="has-large-font-size" id="transcript"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So welcome to our 123rd episode to the Gutenberg Changelog podcast. In today’s episode, we will talk about WordPress 6.9 and Gutenberg 21.9, unless you cover it already in the release discussion. I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full time core contributor for the WordPress open source project sponsored by Automattic. After a long break, Isabel Bryson, JavaScript developed by Automattic and core contributor friend and WordCamp buddy is on the show again. I’m delighted to have you. Thank you for joining us today. Isabel, how are you?</p>\n\n\n\n<p><em>Isabel Brison: </em>I’m great, thanks. And thanks for inviting me, Birgit. I always love being here. Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> You’re always such a delight and you have so much knowledge about the Gutenberg Project. Yeah, it’s just amazing. So we are jumping right in. Right. What have you been working on for the last period of time?</p>\n\n\n\n<p><em>Isabel Brison: </em>I’ve been working on bits and bobs, this and that. I did a fair bit of work on the content only feature formerly titled Write Mode, but unfortunately that didn’t make it into 6.9. It’s still. It’s getting there. I am optimistic that we will have it built shortly, but it just wasn’t stable enough. There were decisions to be made. There was. UX wasn’t really perfect so we thought we’d hold back from adding it to this release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I think it was a good decision. But I also love the feature. Yeah. That it kind of. You kind of get your head out of the design stuff and you’re not distracted by the design stuff and you just can create content once a theme is stable or once a site is stable, you don’t have to make all those things decisions. Yeah. So I’m really good, really great that that’s in the works. But yeah, I understand that it is punted, as we say, to WordPress 7.0. Wow. That’s a big number too. That’s next year.</p>\n\n\n\n<p><em>Isabel Brison: </em>All right. That’ll be exciting.</p>\n\n\n\n<h3 class="wp-block-heading">What’s Released – WordPress 6.9 Beta 1</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So last episode we were actually talking with Beth Soderberg and we also kind of talked a little bit. What probably didn’t make it. And now that we have WordPress 6.9 beta 1 out, we know that especially two blocks that I really was looking forward didn’t make it into the release. They are also punted to 7.0. That is the breadcrumbs block and it’s the icon block and maybe no, another one. There were some ambitious new blocks in the works. And they will all come, but not for this release. So what are the main features for 6.9, do you think?</p>\n\n\n\n<p><em>Isabel Brison: </em>There’s a lot. I don’t see it as a sort of one of those releases where you have one or two massive features that are just absorbing all the attention, it seems like, I don’t know, I mean, usually by the time we get to the stable release and folks are preparing the release post and the demos and all that, they’ll, you know, we do a bit of sort of, I want to say marketing spin, but it kind of is around the features and something will have to emerge in first place. But for me it’s looking, looking at the list, it’s looking very balanced. There are very sort of no massive feature, but a lot of small to medium great improvements, quality of life stuff. Things that are going to be incredibly useful, like really practical. So I’m liking that a lot in this feature list for the release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I agree with you. However, I think that the notes feature was previously called the block level comments is actually pretty big for editorial teams. Well, for a blogger like me, I’m the only one on the site, or maybe two or three others, it has no ramification because I can comment myself just a little bit somewhere else. But if you want to kind of keep a step out of the editorial process like Google Docs, where people asynchronously comment on things, that is definitely a feature that a few people really would like to have on their team. So I’m liking that very much.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, yeah, that is, it’s. It’s a very new one. It’s not a sort of enhancement to any existing thing. It’s like, oh, suddenly you can comment on posts and that’s good. It’s also exciting because it’s sort a review of things to come in terms of the collaborative editing phase three, you know, the big. I guess what, what would be the big piece of phase three. So yeah, it is in that sense it’s. It’s a cool feature. Definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And the other part is the. I like, but I’m not quite sure how the switch will happen. The expanded template management. There have been quite some tests in there. So that’s a feature where you have now two more items in the menu. One is the customized templates and one is the active templates and then the theme templates. Yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>So there’s a few interesting sort of workflow changes around that. One of them is that whereas previously you’d go into your template section in the site editor and you just click into a template, into one of the theme templates and you just go edit it and whatnot. And then you could revert it if you wanted to. But now if you go into the template editor and you click a theme template, it goes, do you want to duplicate this template? Because this is the theme template and you can make a copy if you want, but you’re not going to touch the original one. So that’s a bit of a difference. </p>\n\n\n\n<p>And also in the split between, you know, what are the templates that’s already there in the theme and templates that you might create yourself and your creator templates appearing in the different list and what is probably the most, I guess, I don’t know, I find it really hard to judge what might be more because different people, different workflows will find things more useful than others. But the active templates one is also super interesting because it means that you can essentially have multiple of each. Say you could have multiple home templates and you can switch between them because only one of them is active. So you say you have three different home templates and the active one is the one that’s showing on your website’s homepage. And then you can just go into the admin and switch the active template if you want to just change your homepage to a different template. So that is super cool. If you’re doing things like, you know, the landing pages and stuff like that, you know, seasonal things. This is my Halloween homepage sort of thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Timely example. Wonderful.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And it comes with a few hiccups because that one is if you are accustomed to change your template right there from the theme, getting a notification that it’s now a duplicate there. And normally duplicates we don’t like. Yeah. So but it also, the advantage is that you can make your edits without interrupting your front page and then can activate the edited one and leave the theme template as it is. And you can always switch back in, activating and deactivating it. But I think that one step is oh, do you want to duplicate? Yeah, it’s kind of another decision for the user. But I think it’s a valuable one to point out that, yeah, you can edit this without interrupting your front page and then. And you can build more than one. </p>\n\n\n\n<p>It’s also good for plugin developers who want to add or help with templating specific features, then they can actually also provide multiple templates for the feature. If it’s woocommerce yeah, big, big plugin that has a lot of additional features. Yeah, they can provide multiple templates for the product page or for the archive page for products, and then give the user some choices which one they would like more and add in additional features. So I think that’s also still an underrated feature coming to WordPress, but it makes the handling of the template so much easier or consistent. I would say there’s no surprises anymore, so. Oh, I didn’t know I wanted to do that kind of thing. </p>\n\n\n\n<p>The next one on the list is the ability to hide the blocks. I think we talked about it also with Beth Soderberg and with others because that kind of was in some of the Gutenberg releases before. It’s more a foundational feature right now it can only do hide or show, but there’s no condition around it. I think the developers really want to make sure that the foundation of adding, showing and hiding is consistent throughout the interface and the front end and all the different pieces like blocks, like patterns, like sync patterns. You could hide a block within the sync pattern or even templates or template parts before they add conditions to it. And also with the conditions will come the thinking about how can other people, third-party extenders, that’s plugin developers also add additional conditions to it in the realm of the WordPress ecosystem. So I think the treading lightly on that feature is a good first iteration there.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah. And it can be super useful as sort of a complement actually to the active templates idea is that you could potentially have a pattern or a block or something you have a sale on. And so you put the sale block up on your website and then you take it down and it’s still there. You could just switch it on and off whenever you like. So it’s going to be pretty useful for that sort of workflow, I reckon.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Definitely.</p>\n\n\n\n<p><em>Isabel Brison: </em>I see with the conditional hiding, there’s one very obvious thing. This I think has sort of been a feature request that’s been going around for ages, which is being able to conditionally hide blocks depending on the breakpoint. So in order to have different layouts or different, you know, different content for desktop and mobile, for instance. And so that’s something. But that’s everything that involves responsive behaviors is so complicated because once you start thinking about how, how do you define this then what is mobile? You know, what are you going to give people fixed breakpoints? Are you going to give them the ability to define their own breakpoints? What’s this API going to look like? There’s a lot of questions there that haven’t been answered.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah, indeed. And. And I think I’m coming from expectations that I have been using Nick Diego’s Block Visibility plugin that he started, I don’t know, three or four years ago and he kind of provided new features every time when he’s. He released a new plugin. And you can do the time condition, you can do the coming from Twitter or coming from. So there are a lot of expectations there that have been a little bit damped through this first feature in Core, but I think it’s a good move to do that in the smallest increments possible to not interrupt things too much. So how do you feel about the command palette? Command palette everywhere?</p>\n\n\n\n<p><em>Isabel Brison:</em> It’s cool. I mean, it’s actually pretty nice to be on whatever screen call it up, just start typing name of new screen I want to go to and be able to go. Because it. I think it really saves a lot of clicking around in the admin, a lot of, you know, going click, click link to place. Whereas now it’s just a keyboard shortcut, type enter. Your hand never needs to leave the keyboard. Yeah, that’s pretty good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That’s pretty good. Yeah. I like it very much and I haven’t used it that much as I wanted to, but I also haven’t had the WordPress 6.9 installed on many of the test sites. But yeah, I like that. Now the pressure is off to surface all the menu items to the top so it’s easily accessible. That’s kind of for. For a lot of people, kind of the. The problem with the WP admin with those two to three levels deep and this can really. Yeah, shortcut that, as you said, to the next screen to a different. Add a post. You don’t have to click through all that. You don’t have to for changing settings. You don’t have to find which settings do I want. Yeah, and all that. It’s really cool and I’m glad that it’s now available to the full WP admin. That’s where it’s really shining now.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, that’s it. That’s the thing. It’s go from anywhere to anywhere, whatever screen you’re on. That’s really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And plugins can register commands for their own tools. So there’s that API was in 6.8 already, or even 6.7, I don’t remember, but it was already in WordPress available for plugins to add comments, but if they are out, if most plugins are outside of the site, Editor. So it didn’t really register to anybody or wasn’t particularly useful. So yeah, the next thing is, I’m not quite sure what to make of that. That’s the allowed block support I get and the UI for it I don’t get. So a loud block is. Well, why don’t you explain it?</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, that was actually one of the pieces I reviewed, so I tested it a fair bit. And allowed blocks is something that. So the functionality itself has existed for a while, but in order. So what it does is for some containers that support it, you can define which blocks are allowed inside that container. So it could you say by containers I mean blocks that can contain inner blocks, such as a group or a cover or, you know, the usual suspects columns, stuff like that. And in those blocks you can define which blocks are allowed as children of them. So you could say if you have a columns block, these columns will only have headings and paragraphs and I don’t want any images, I don’t want any widgets or any other stuff. It’s only going to have those two types of blocks. Or conversely, you could say that there is a specific type of block that is not allowed. But I think the more frequent sort of use case would probably be to define like a strictly limited amount of blocks that you could use. And this could be useful if you’re creating patterns and templates that you want to be used in a certain way to make things easier to just define which blocks are going to be allowed in that container. This was already possible to do, but in order to do it you had to edit the block markup. So you had to go into the, you know, the editor code view and you had to write in the block, you had to like identify the block, which is, it’s not very user friendly. It’s mostly, you know, it is something that can be done through the UI. You don’t need a code editor to do it because you have that handy code view in the editor. So you can edit the code, you can add that metadata in there, but it’s not nice. And having that as a UI option, it’s well enough hidden away that it’s not sort of going to interfere with normal workflows. It’s not in your face. Right. It’s just out there in the advanced, if you really want to use it, you know, it’s there just makes things that little bit easier for. I’d say this is probably mostly a feature for, you know, website admins, theme pattern builders, that sort of scenario agencies probably find it useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I think agencies find it useful, but they’re already doing that with code. Yeah. So their patterns already have the block markup in it.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah. This just makes it a nicer interaction model because, I mean, if we’re offering essentially what WordPress has been doing for these, you know, for these past I don’t know how many years since the block editor came out. Really, you know, eight years. That. Wow, that’s been a while. But we’ve been building this system that allows you to do as much as you can, that allows you to build whole websites without ever having to touch the code. And this is just, you know, one more piece of that. It’s like. No, there’s a UI for that. You can actually. You don’t actually have to get your hands dirty.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So I can. I can see how that works for patterns because it’s kind of one container that is used over and over, but to set it up, you need to be in the editor. So it’s normally not used for someone who creates posts and pages and has to do the setting for every container that’s on the canvas to do that. So it’s probably not that use case that I was. Because it only makes sense for me to get into template parts or get into the containers in the. In the patterns or in templates. Yeah.</p>\n\n\n\n<p><em>Isabel Brison:</em> So, yeah, I’d say so, yes. This would be mostly a feature for templates and patterns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>Like you wouldn’t be writing a post and go, oh, I’m going to put a group block in here that only allows paragraphs like what? You don’t need to do that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, you can do it right away. Yeah, so, yeah, I think that was what tripped me up. So why is in the post and page editor, but that’s the same editor. So it’s more function for blocks of blocks everywhere.</p>\n\n\n\n<p><em>Isabel Brison: </em>I mean, you can add patterns to posts and you can add navigation blocks to posts. This will just give you your whole website navigation right there in the post. It’s like you can do anything with blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, yeah, yeah. You can definitely do that. Yeah, absolutely. So I get. Yeah. </p>\n\n\n\n<p>So the same is also happening with block bindings where it had been already in WordPress and being used, but it was not particularly expansive. So now block bindings is kind of going out to all blocks and also have UI where you can see what are the bindings in there. And plugins. Plugins will have not in this release, but in 7.0. I think the possibilities to define their own UI for the block binding so I think that’s going to be a real winner also for plugins to not have to create custom blocks but just do a block bindings to some data. So now we come to the great part and that’s the new blocks that are in beta 1 now. We are all pretty excited I think about the accordion block. Finally made it.</p>\n\n\n\n<p><em>Isabel Brison:</em> How good is the accordion block?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And it’s pretty feature rich. And I know that Justin Tadlock is working on a style variation tutorial for it. So you as a theme developer or site builder can learn more how you can then style it and what to look for. And he also is testing it so whatever tutorial comes out it. I’m sure he has one or two, three bug reports that he said, well that could be better. But that’s kind of the. It’s the first version so that’s expected and wanted.</p>\n\n\n\n<p><em>Isabel Brison:</em> Yeah, totally. Lots of testing will have to be done on all these things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Isabel Brison:</em> So that it’s all stable in time for the stable release. There’s a math block now that is super fancy.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>Like you can do math stuff in your posts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And there’s one math professor I think from Stanford who has a blog for many, many years and he always kind of said is that possible to do latex and ML markup language and all that? So yeah, he, he might be delighted about that. And for all the teachers that are out there that are in, in STEM fields, that’s. What is that? Science, technology, Math and science.</p>\n\n\n\n<p><em>Isabel Brison: </em>Technology, Engineering. Engineering and math. Is it math?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Isabel Brison:</em> Interesting. I always thought of maths as part of science, but.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Well, math is used in all kinds of different science.</p>\n\n\n\n<p>Isabel Brison: </p>\n\n\n\n<p>Yeah, it’s sort of philosophy adjacent too. It’s a bit, bit of a weird one. It’s a weird discipline actually.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Engineering needs math too.</p>\n\n\n\n<p><em>Isabel Brison: </em>Well, engineering things. Engineering is a very practical discipline that uses abstract concepts from other disciplines like maths.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Right. Yeah. So that’s them. In the US there are some instructors who actually call it Steam and the A that comes in Steam is for art because you also need designers to be kind of really good in building a world. But we are digressing.</p>\n\n\n\n<p><em>Isabel Brison:</em> I like STEAM actually. I think because things are a lot more interconnected because you do have that sort of philosophy poking in and you have ethics and you have history and you have a lot of things. Yeah. A lot of arts related disciplines.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I totally agree with you. Because you also need to have a creative mind and that is actually most of the time only really taught in art settings to kind of be exploratory and to kind of see where the art. Well, your creativity gets you. And yeah, design is applied art. Yeah. In that matter. So, yeah, it’s kind of. Yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>Problem solving when you have lots of constraints, lateral thinking, that sort of thing. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, so the terms query block is a very special block that helps you create like the post query loop, a loop of terms that are on your site and then you can display either with counter or without the counter, with links to the archive pages in one swoop. And it also has some adjacent new blocks. That’s the term name and the term. No term description was already in. In the editor, so that’s kind of nice for the creative designers. The paragraph and heading blocks now have a fit text.</p>\n\n\n\n<p><em>Isabel Brison:</em> Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Typography setting. It came out of the idea that there needs to be a stretchy text block and then by exploring how to figure out how that works, the developers came up with, oh, that might just be a setting for the typography and we don’t need to create a new block. So I think it’s a really cool, cool PR to read through to kind of see how that all kind of developed in terms of we have an idea in our head and then we need to figure out how to implement it.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, for sure. I think it makes total sense to have that be a setting or sort of like, I guess it should be under typography. I think it is typography. Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>It’s enough.</p>\n\n\n\n<p><em>Isabel Brison: </em>To be sort of a block support because then that means that you could potentially, you can add it to headings, you can add to paragraphs. I mean, you could add it to other blocks potentially, but I think those are probably the major two that you’d want this on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, yeah. So what it does is actually you. You start typing, give it a. Your heading, and then when you switch it, it kind of fills the whole space of it and not just the space that the normal letters would take. Yeah, when you write it out, it kind of increases it and then. Or makes it smaller depending on how long it is. But it definitely has a higher attention rate on your website and it fills the whole thing, whatever container it is in.</p>\n\n\n\n<p><em>Isabel Brison:</em> Yeah, it’s pretty cool to play with. It’s a bit weird because there’s a bit of a delay in the resizing. So if you’re editing something in the editor, it resizes just a bit later, which I guess probably you also don’t want it to resize as you type. I don’t know. It’s like great. I think that in that sort of finer detail of getting the experience exactly right. And if I think that there was a bit of back and forth on that on the PR too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It was.</p>\n\n\n\n<p><em>Isabel Brison:</em> So it’s going to be interesting to see where we land with this one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. And I. I think it’s a bit weird to see the letters go big and small while typing because it kind of gets you a little bit in a motion sickness kind of way. But it’s also something like the drop gap in the paragraph. Yeah. You don’t see it in while you’re typing the paragraph, but once you get out of the block, it formats it, the first letter to be a larger size. So it’s probably a similar thing that you can only diminish this.</p>\n\n\n\n<p><em>Isabel Brison:</em> Yeah. No, the drop cap actually disappears if you select the paragraph that has a drop cap. Whereas the fit text. The text stays big. It’s sort of. It slightly changes size. So you have a paragraph with fit text and if you click into it to type in. Because. I’m not sure if this is because of the cursor, but for some reason it just sort of shrinks slightly. This might be a bug. I’m not sure we’ll figure out test a bit further.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I’m sure developers will figure it out or designers to kind of make that a little bit more smoother. Yeah. </p>\n\n\n\n<p>And the last block galaxy that comes in is the time to read block. It has been in Gutenberg for quite a while, but it took some major effort to get it past the accessibility problems that it had. And now it’s actually because of. We talked on a previous episode about that as well, that the time to read, if it’s a static number, it kind of is hit and miss for the readers who take longer or take shorter, it’s kind of not really helpful. But now it displays a time range, so from 15 to 18 minutes or 12 to 18 minutes or something like that. If you want that there’s a choice for the user and then the time to read. Blog actually also has a word count setting, so it can be used as two blocks. One displays the time to read in your. In your loop or on your single post template. And the other one shows the word count. So it kind of gives two pieces of information about two data sets for the reader to figure out do I want to read it now or later? And then later never happens. But that’s a different story behavior.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, word count is. I find word count a pretty cool block. But do we. Is this something we ever want our readers to know how many words a post has. Is there anyone. I guess my question is, is there anyone out there who chooses what to read based on how many words it has? If you’re going to, you know, I, you know, I need, I need a five minute read. Are you going to go like, no, I actually need a thousand-word read. Is that a thing?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Does anyone. Yeah, well, it depends. Writers know how much, how long it takes to read 3,000 words and can say, okay, I read half of it and not the rest of it or something like that. If it’s good structure, it has the most important part in the first half and not in the second half. But yeah, I don’t know. People are so different from me. Yeah. That I really don’t have a good handle of what’s good. So I wouldn’t be a good product manager because I said, okay, well everything in there give options here. But that’s not the philosophy of WordPress. It’s kind of decisions and other options and I’m having a hard time thinking about decisions for millions and millions of people that are only millions and millions of people in other cultures. So I really admire all the people who can make those decisions here. I’m digressing again. Sorry.</p>\n\n\n\n<p><em>Isabel Brison:</em> That happens. But yeah, I agree.</p>\n\n\n\n<p>I’d much rather be an engineer than the product manager because those folks have to deal with really tough decisions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So the next thing is something for theme developers. Pretty much it’s the border radius presets for the theme JSON file, which is pretty good. So you don’t have users that have all kinds of ideas how big the border radius has to be. And there’s a consistent either small or middle or large kind of border radius that you can give options to your users. Justin Tadlock actually wrote a piece already on the developer blog about that. So go and look for it. And of course I also put it in the show notes.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, it’s linked to from the test blog.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That too. Yeah.</p>\n\n\n\n<p><em>Isabel Brison:</em> That’s good. Justin’s always on top of everything.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Yeah. Well, as long as theme. As long as it’s a theme-related gene station-related design related stuff.</p>\n\n\n\n<p><em>Isabel Brison:</em> But this is. It makes perfect sense because you have font size presets, you, you have standard sizes, you have spacing presets, you have all, all sorts of things. So border ages is just one more of those.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. You could even have shadow presets. Yeah. For your, for the shadow setting. Drop shadow setting. Yeah. </p>\n\n\n\n<p>And the next one is that Social links can now have custom icon not only the icon extensibility, but the whole custom variation extensibility where you can create your own social icons with a plugin and have that display on your website. It’s fairly easy once you get to get through the documentation, all that to actually create. So I needed it for my theme that I do for the Gutenberg Times. It’s still in the works, but I talked about it earlier. I needed social icons for the various podcast directories where Gutenberg Changelog is actually listed and I only found two of them in the with Core. One was the Spotify and the other one was the RSS Feedback. Yeah. But there’s also Pocket Cast and there is. The Pocket Cast embed is in there and maybe there’s even. Yeah, so there’s also a pod bean and these kinds of things. So I. I had to create a plugin and just add them to it so I can put them in my template. So it’s a fairly. If I can do it, everybody can do it. Yeah. Kind of thing.</p>\n\n\n\n<p><em>Isabel Brison:</em> Cool. Do you reckon we’re going to start seeing plugins like for sort of really, really niche sort of, you know, like social media platforms? I can extension pack or podcast platforms. I can plug in like for like specific things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I can see that too. Yeah. And. Or payment. Yeah. Kind of for all the content creators. Yeah. You can. You can see a link to Ko Fi and to buy me a coffee or all this. Or Patreon or PayPal. Yeah. For those. Click here and donate something. Yeah, I can see that. And I don’t think that. Yeah. As contributors we don’t have the bandwidth to kind of decide. Same thing. Yeah. Decide what’s now should be in Core and be maintained or not. Yeah. So have the extensibility in there is a really plus for the ecosystem. Yeah. </p>\n\n\n\n<p>And that’s kind of some of the features that I’m kind of thinking of right now. I’m still working on the Source of Truth with all the. What I haven’t seen, neither in the release post nor in the call for testing, is the. The list of all the improvements for the other blocks. For the old blocks only. Yeah, Kind of. What happened with the cover block and what happened with some of the comment blocks. There are some additional features in there. We kind of wanted to remind everybody that there are 15 Gutenberg plugin releases in this next version. </p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah. And I mean, there’d be a huge amount of bug fixes, but unless there were a really scandalous bug that everyone was upset about, you wouldn’t really announce it in your beta 1 release posts, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, no, of course releases are for features. Yeah, right, yeah. But there are updates also for developers. I think almost every API got some love in this release. So there is the Data Views and Data Forms. The team has been working on almost all the 15 Gutenberg releases. There was something in there for the Data Views and Data Forms. Then the Abilities API made it just half an hour before the release into the beta.</p>\n\n\n\n<p><em>Isabel Brison:</em> So we will see that one’s also. It’s sort of a cool preview or pointer to what the future may hold in terms of AI integrations for WordPress. So it’s a good one. I think it’s good to have it out there, I guess so that plugins can start because the idea is that plugins can register their abilities, the things that they can do, so an AI agent can go and pick up on those things and do tasks for, for the website owner. But of course it’s one of those things that it has to. It’ll only work if, if there’s adoption. So I guess it’s good to get it out there early. So maybe plugins will start experimenting with that and then once all the other parts because then you know, there’s a whole workaround building MCP adapter so that those abilities can be channeled through to AIs. So that’s, you know, it’s all a big working process. Pretty exciting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah, yeah, I feel that too. Yeah. But I, I think the, the MCP, it’s not yet ready yet. I think. Yeah, people have worked on it, but it wasn’t near ready to be in Core and be maintained for the future because it’s the backwards compatibility promise that WordPress has. Might delay a few things to make sure that people are really sure that needs to be in Core or that it doesn’t change too much in the future. And with all the AI stuff, it’s probably hard to predict how far, how long it needs to wait or how this all comes together.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, it’s interesting because the whole of sort of AI-related development is going in this whole like move fast and break Things mode, whereas WordPress is not about moving fast and breaking things. So yeah, no, the MCP I mentioned it because this is something that will, the Abilities API will later be integrated with if all goes well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. And there’s a plugin out there. So the AI team, Core AI team has four building blocks. One is the Abilities API, the other one is the MCP adapter and then there is a PHP SDK software development kit. Basically the fourth one is the plugin that kind of pulls it all together and kind of shows what actually could be possible. So people who kind of. Or developers who kind of want to get into that field can gradually skill up on the AI stuff. And I think it’s really cool. And I know that Jonathan Bosinger, he has done a lot of live streams on all the AI features and has worked with the Abilities API and he’s preparing also for the developer blog an article to kind of do the introduction there and figure out a use case or a little small plugin that kind of uses it. So, yeah, pretty cool. Cool things to come. Yeah, the interactivity API improvements are more about the router of that.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, I have to say I didn’t really follow these very closely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, me neither. It was always so it sounded all like bug fixes, but I know there’s something in there that people would like to use. I need to get smarter about that, but I haven’t yet. And then the updates to the block bindings, where block bindings coming to other blocks or to custom blocks in one way or other, and then the updates on the HTML API, those are totally beyond me.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, those are more internal things that you wouldn’t see any user facing changes with HTML API updates. You might, I mean, potentially in some places it might make the code a bit more performant, it might make the code a bit more stable. It’s generally, it’s. They’re good code quality improvements, but it’s not something that you can actually point at on the front end of the website and go, hey, this is the.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Thing, the HTML API. Yeah, celebrated.</p>\n\n\n\n<p><em>Isabel Brison: </em>And you don’t see it in action.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Like visually put fireworks on it. Yeah, I said, why? Yeah, that’s kind of funny. Yeah. But what I learned is one of the good things about the HTML API is that you could actually parse HTML without using regex and get a better, say, a more consistent outcome on things. If you want to add an attribute or class or something, something like that to certain things, that’s a good use case for HTML API. But it’s also. Get a URL link content. Yeah, there are these new functions that, if you had to write them yourself, kind of really complicated. But there’s an underlying support layer with the HTML API that kind of saves you a lot of work on that.</p>\n\n\n\n<p><em>Isabel Brison:</em> Oh yeah. And things we do a lot, very frequently throughout the code. And yeah, as you say, we were using regexes for things and like had custom solutions here and there to like add a class, remove a class, edit a class, do weird things with bits of markup. And the TAG processor has made a lot of code a lot more readable.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So I think that’s for now. The WordPress 6.9 part of our changelog today. We need to get going here. </p>\n\n\n\n<h3 class="wp-block-heading">Gutenberg 21.9</h3>\n\n\n\n<p>So what’s in 21.9 specifically? </p>\n\n\n\n<h3 class="wp-block-heading">Enhancements</h3>\n\n\n\n<p>We talked about the allow blocks UI and support for more blocks. </p>\n\n\n\n<p>What I like is actually the aspect ratio control for gallery blocks.</p>\n\n\n\n<p><em>Isabel Brison: </em>I was going to mention that. I was just looking at it going, oh, that’s a cool feature. Yeah, it is, absolutely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. But all of a sudden you have the pictures that are in your gallery along the same size and all the like. Yeah, it can look really cool. And then in 21.9 there are also features in there that didn’t make it in 629 like the breadcrumbs block for testing. It’s all. It’s still behind the experiments flag but it. It will support the post with terms has some other. It’s actually added in 21.9 to the Gutenberg plugin.</p>\n\n\n\n<p><em>Isabel Brison:</em> There’s a cool one here that I wanted to point out in relation to the Data Views package that is actually pretty visible in the front end. So it’s shipping in 6.9, which is the persistence for your page settings. So when you’re in the site editor, say you go into the pages view and the default of that view is a list and the site preview and you can change that. Say you can change it to display as a grid or a table and previously you change that and then you’d navigate to another place and then you’d get back and it would be reset to the default view. Whereas now it will save your settings, your view settings. When you navigate away and you navigate back, if you’ve reset the view, you still have the same view that you configured. So I think that’s just. It’s just one of those little but really cool quality of life improvements that was chipping in 6.9.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, it’s kind of upsetting when, when, when it doesn’t remember. Yeah, because it’s a bloody computer. It should remember.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, no, I need this view because I really need to look at the featured images or whatever and I need to see them in this size. And then you navigate it and go, no, it’s all gone back again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Is this stored in the user preferences or is it more in the browser or.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, so technically I think a new package has been created to store these. There’s like a new Views package which is being used to store data. Views preferences. It is. I would say it’s likely to be. It’s likely to use emitter stored in your browser settings like, you know, local storage.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Okay.</p>\n\n\n\n<p><em>Isabel Brison:</em> But I haven’t actually dived yet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>It’s just a detail that I was kind of. Yeah. If I move away from my computer and go to a different computer if it’s stored in the browser. I don’t have that feature persistent here. But anyway, so yeah, we talk pretty much through things because the 21.9 is the last Gutenberg plugin release that has features for WordPress 6.9. After that, only bug fixes and quirkiness removal will make it into the release. So a lot of the things that we talked about actually came in just ahead of the 21.9 release candidate. So the notes are graduated from the experiments here so they can get into the release. </p>\n\n\n\n<p>The switch from block comments to notes in the term of description and how we talk about it to offset the confusion with the other comments that we have on WordPress. Yeah. Which is the user comments, the visitor comments. So that’s also in this release. We talked about the coordinate block. We talked about block visibility. There’s a keyboard shortcut actually for the block visibility. So you can. You can highlight a click on a. On a block and then do control or command shift H and then you hide it or H back again. It shows a toggle switch toggle keyboard. So that’s pretty cool. And there’s some drag and drop by move quality of life enhancements. When you move the block, it actually moves the block animation. So you kind of know, okay, I’m still moving this block, I’m not moving something else.</p>\n\n\n\n<p><em>Isabel Brison:</em> Yeah, the drag and drop. Being able to drag and drop actual blocks is also a really great improvement. Like to actually grab the blocks and drag them somewhere else and see it being dragged.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>And yeah, yeah, yeah.</p>\n\n\n\n<h3 class="wp-block-heading">Experiments</h3>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And then there is what is in 6.21.9 are actually experiments that I wanted to point out. I talked with Beth Soderberg about that because in the 20.8 there was a new block API for PHP only blocks. And it’s definitely not a fully featured thing yet. But it now has auto register the block with the block API version 3, which is important for the Iframe editor. And the other one is to make sure that the editor interactions and block supports are also working correctly with the PHP only blocks. What was In Block Editor, kind of dividing from the get go is that people, some PHP developers, hate JavaScript with a vengeance. They can.</p>\n\n\n\n<p><em>Isabel Brison: </em>I’m sorry to hear it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, I know.</p>\n\n\n\n<p><em>Isabel Brison: </em>I kind of understand.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. JavaScript, the good parts, is a very small book. So there is the expectations that not all good things from the JavaScript block handling comes into PHP, but now it’s much easier to create blocks with just PHP. But it’s experimental. It is not yet in WordPress 6.9 and I don’t know the timeline from that, but it’s just. I just want to point it out that some people can start testing things with the Gutenberg release 21.9.</p>\n\n\n\n<p><em>Isabel Brison: </em>Yeah, yeah, that would be great. That’s a great thing for extenders to test and give feedback on, I think. Especially while it’s still experimental, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, absolutely. Especially agency developers and plugin developers who haven’t made the switch to block things yet. And then. Yeah, go ahead.</p>\n\n\n\n<p><em>Isabel Brison:</em> I was just going to say I was doing a bit of experimenting here just to loop back on the data views preference persistence thing. It appears to be using preferences because it does maintain your preference across browsers.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Okay, cool. Thank you for filling that gap. Knowledge gap. There’s also an experiment that the navigation block toolbar gets an add navigation or edit navigation in the template part editor, which is definitely helpful because clicking on things, it’s sometimes hit or miss, but I think it’s an experiment. I didn’t see that that made it into 6.9 because that came very late into 21.9.</p>\n\n\n\n<p><em>Isabel Brison: </em>There’s been a lot. There’s been a lot of sort of ongoing work on the navigation block. There are no huge pieces. Each one likes just sort of small bits and pieces. There’s a general improvement to how it works. Which, which one in particular are we looking at?</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>When you go in the rundown further down to the experiments, there’s one for the block API and then for the block library, it has a navigation block toolbar. And when you click through the PR that at 72008 you see it still has the experimental label there and there’s also no backport to 6.8. 6.9.</p>\n\n\n\n<p><em>Isabel Brison:</em> Oh, okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. So you’d like that because you like having text in your toolbar, right?</p>\n\n\n\n<p><em>Isabel Brison: </em>Oh, yeah. No, I’m finding it very interesting that some of these new buttons for new functionality that pops up are actually text buttons. It’s like, oh, we’re giving up on icons. Express things with icons as fully as you can with text. Like I’ve Look, I’ve always struggled with icons. To be perfectly honest. One of the reasons I worked on. On the text labels setting was because I could not tell the icons apart from each other. If I’m going to be working on this UI, there has to be a way of switching this off.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And a lot of people actually are grateful for that as well. With the same reason. Yeah. That I can’t. Don’t do it for me. To be sure that I click when I click on it. That I don’t offset a nuclear bomb or something like that. Yeah, yeah.</p>\n\n\n\n<p><em>Isabel Brison: </em>Was that the one I wanted to click? No, it’s the other one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And what was it again? That I really. Yeah. To kind of remember those icons as well. Well, and then for the block bindings, there is an experiment in 21.9 that extends the UI to the external sources. That’s something that I mentioned before that it won’t make by the block bindings. It won’t make into 6.9, but it is kind of in the works for 7.0 and to extend the UI for the block bindings so plugins and other extenders can work with that and have their custom blocks and all that. And if you’re interested in a PHP only blocks, there is actually an added. There is some documentation in there now in the block editor. Even if it is now still an experiment. There is already some documentation under the getting started fundamentals registration of block. There is a PHP only block in autoregistration chapter now. </p>\n\n\n\n<h3 class="wp-block-heading">What’s in Active Development or Discussed</h3>\n\n\n\n<p>I think there was all I wanted to point out from the 21.9 release. That is beyond 6.9 features and all that we have also one thing that might be interesting for the theme developers and also for plugin developers who want to tap into global styles. The global styles have been. The data logic has been moved into a dedicated package. So you don’t have to have three or four packages to kind of deal with your global styles. It’s just one that you have to include in your plugin. So I think that’s very good development there.</p>\n\n\n\n<p><em>Isabel Brison: </em>This is still sort of far from its definitive shape yet there was actually that even today there’s sort of discussion on that PR as like, should it be this package? Should we. I was. I was arguing for some of these things to be in the style engine package. And Riyadh’s sort of holding back going, no, it might be too early. Let’s try and figure out the APIs first. One, a very practical reason for this to appear is because there are a bunch of global styles logic that lives in edit site and if we want to use it in the post editor, it’s not really available. And so global styles should, you know, global styles should be in a place where it’s not bound to a specific editor and it can be used across the board. So this is sort of it’s work that’s going to be helpful for lots of internal purposes too. I think we’re still not quite close to getting to the point where we start thinking about how useful this is going to be for extenders. However, I have to say if extenders are listening that may be interested in using any of these APIs. Feedback is always very welcome. I mean we can only know what needs to be public and what tools we should offer when people tell us. I need that, you know, this is a thing that would actually be very useful so that any feedback on that count I think would be really good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, there’s still a few things that are still in private APIs but I think that’s the step to kind of move it into a public API as well. Yeah, awesome. Yeah, thanks for diving in there. Yeah, it’s a lot of commentary there and also with further PRs to fix some of that, but it is merged. It’s alerting. It’s however in the milestone for 22.0 and we’ll see how far that goes when we talk about that in the plugin release of Gutenberg 20.0 which is actually the next one in two weeks so. Well, yeah, yeah, yeah but I think there’s a lot of activity going to be around 6.9 buck fixes and all that as well. </p>\n\n\n\n<p>So if people want to connect with you, where would they find you? Isabelle, what is the best way to connect with you?</p>\n\n\n\n<p><em>Isabel Brison: </em>I think I’m. I’m sort of not really on social media these days, so GitHub I am tell the machines on GitHub you can always come and you know, leave comments on my pull requests and the work that I’m doing. If it’s anything you’re interested in. I am also in the core WordPress slack. I think I’m also. Yeah, I’m also told the machines. So that’s. Yeah, that’s me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>That’s a great handle coming out of the 90s.</p>\n\n\n\n<p><em>Isabel Brison:</em> Yeah I was like ah, talk to computer thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Right, right, right. Yeah. Well it’s such a pleasure to talk with you through All Geek out over the Gutenberg Project and releases. Thank you so much for being here. Dear listeners. Go and test help test WordPress 6.9. The instructions are incredibly detailed and Krupa Nanda and Jonathan Bossingers, who are the test release leads, co-leads, have done a fantastic job to kind of put it all together. Of course, the links will be in the show notes. I will also link the PR we talked about the global styles going into a dedicated package. I will link that as well in the show notes. And as always, the show notes will be published on GutenbergTimes.com podcast this is episode one, two three and like it is my password one two three.</p>\n\n\n\n<p><em>Isabel Brison</em>: I love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>And if you have questions or suggestions and news you want us to include, to send them to <a href="http://changelogudenburgtimes.com">changelog@gudenburgtimes.com</a> that’s an email address and <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a> so thank you all for listening and thank you again, Isabel, for joining us. Bye Bye.</p>\n\n\n\n<p><em>Isabel Brison: </em>Thank you. Bye.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Oct 2025 09:30:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Matt: November Atlantic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150377";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"https://ma.tt/2025/10/november-atlantic/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1961:"<p><a href="https://www.theatlantic.com/magazine/toc/2025/11/">The Atlantic November issue is lovely</a>, focused on the American Revolution. I particularly enjoyed:</p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://www.theatlantic.com/magazine/archive/2025/11/king-george-iii-british-monarchy-american-revolution/684309/">The Myth of Mad King George</a>, which gave a different more nuanced view of King George I didn’t have before or from <a href="https://hamiltonmusical.com/new-york/">the Hamilton musical</a>.</li>\n\n\n\n<li><a href="https://www.theatlantic.com/magazine/archive/2025/11/benjamin-franklin-william-political-conflict/684315/">Why Did Benjamin Franklin’s Son Remain Loyal to the British?</a> I was obsessed with with Ben Franklin’s Autobiography as a kid, he was an incredible self-made man who came from impossibly hard beginnings and had a profound impact on history. I think I originally read <a href="https://www.gutenberg.org/files/20203/20203-h/20203-h.htm">through Project Gutenberg </a>on my first <a href="https://www.pencomputing.com/palm/Reviews/visor1.html">Handspring Visor</a>. The article shows an entire huge part of his life that is missing from his Autobiography.</li>\n\n\n\n<li><a href="https://www.theatlantic.com/magazine/archive/2025/11/the-american-revolution-ken-burns-documentary/684314/">What We Learned Filming The American Revolution is from Ken Burns</a>, Sarah Botstein, and David Schmidt, who’ve come together with the challenging task of making a documentary from a time there were no photographs or videos. Ken Burns is one of my favorite documentarians, and the behind the scenes is very interesting.</li>\n</ul>\n\n\n\n<p>So pick up a copy as you pass through an airport or by a newstand. I consider it a very worthwhile subscription. It might be better to read in print or through <a href="https://www.apple.com/apple-news/">Apple News+</a> as their website a bit broken for me right now.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Oct 2025 06:55:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Riad Benguella: Debugging WordPress Scripts and Styles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:26:"https://riad.blog/?p=56631";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://riad.blog/2025/10/25/debugging-wordpress-scripts-and-styles/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1655:"<p>With the move to more JavaScript and Styles in WordPress admin pages and editors, I spend some time debugging what styles and scripts are being loaded on a given page. (Specially important if you’re working on blocks, or JavaScript rendered admin pages)</p>\n\n\n\n<p>To help with that I use a <a href="https://gist.github.com/youknowriad/e5854d6c602c73dec260d56a2783408a">small vibe-coded tool</a>. It helps understanding why a script or style was enqueued on a given page.</p>\n\n\n\n<p>For each script (or style) it gives:</p>\n\n\n\n<ul class="wp-block-list">\n<li>The uncompressed size.</li>\n\n\n\n<li>If it was enqueued explicitly.</li>\n\n\n\n<li>Which ancestor script was enqueued explicitly causing the current one to be loaded in the page as well.</li>\n\n\n\n<li>What is the direct parent script.</li>\n</ul>\n\n\n\n<p>And it presents all of that in a digestible list.</p>\n\n\n\n<figure class="wp-block-video"><video controls="controls" src="https://riad.blog/wp-content/uploads/2025/10/Screen-Recording-2025-10-20-at-9.26.04-AM.mov"></video></figure>\n\n\n\n<h2 class="wp-block-heading">How to use it</h2>\n\n\n\n<ul class="wp-block-list">\n<li>Just drop <a href="https://gist.github.com/youknowriad/e5854d6c602c73dec260d56a2783408a">the file</a> in your WordPress plugins folder (or load in another existing plugin)</li>\n\n\n\n<li>Append <code>?debug_scripts=true</code> to the url of the admin page that you want to debug.</li>\n</ul>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p>That’s it, for a more complete debugging solution, consider checking the excellent <a href="https://wordpress.org/plugins/query-monitor/">Query Monitor</a> plugin.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 25 Oct 2025 11:17:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Riad Benguella";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:101:"Gutenberg Times: WordPress 6.9 Beta, Gutenberg 21.9, Playground, and Fields API—Weekend Edition 346";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://gutenbergtimes.com/?p=42361";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:22662:"<p>Hi there, </p>\n\n\n\n<p>I am genuinely giddy about WordPress 6.9 and its delightful updates. Major kudos to all contributors, who push it over the first hurdle of this release cycle. <a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/">The Beta 1</a> release happened earlier this week. The final release is scheduled for December 2nd, 2025. </p>\n\n\n\n<p>There are lots of different updates for the full range of WordPress users.</p>\n\n\n\n<ul class="wp-block-list">\n<li><strong>Content creators</strong> get a number of new and waited-for Blocks, with Accordion, Time to Read, Term Query and MathML Block, and further refinements to block handling and existing blocks. </li>\n\n\n\n<li><strong>Theme and site builders</strong> get additional tools to style a site via theme.json and majorly improved template management right in the site editor, and </li>\n\n\n\n<li><strong>Developers</strong> can build faster with an enhanced Block Bindings API and Interactivity API, and for the admin side of plugins the component library of DataViews and DataForms has some great updates as well. </li>\n</ul>\n\n\n\n<p>Release Test co-lead, <strong>Krupa Nanda</strong> posted great instructions on how you can <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/"><strong>Help test the Beta 1 release of WordPress 6.9 </strong></a>. It’s the best way to learn how to use the new features and report quirks and bugs back to the contributors, so they can be fixed before Release Candidate 1 which is scheduled for November 11. </p>\n\n\n\n<figure class="wp-block-image size-large"><a href="https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/"><img alt="WordPress 6.9 Highlight grid [WIP]" class="wp-image-42382" height="375" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/10/WordPress-6-9-Highlight-grid-variation-1.png?resize=652%2C375&ssl=1" width="652" /></a></figure>\n\n\n\n<p>In Europe we will turn back our clocks one hour on Sunday (Oct 26). The US will follow suit next week (Nov 2). This will be the week of “pick-up meetings” for me. It’s what I call the phase where I miss a meeting and instead turn up at someone else’s meeting and meet new people. Win-win. <img alt="🎉" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f389.png" style="height: 1em;" /> But seriously, if you scheduled a meeting with me next week, you can’t send too many reminders if you want me to turn up in time. </p>\n\n\n\n<p>Have a splendid weekend ahead, </p>\n\n\n\n<p>Yours, <img alt="💕" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f495.png" style="height: 1em;" /><br /><em>Birgit</em></p>\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<nav class="wp-block-table-of-contents"><ol><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/#0-word-press-release-information">Developing Gutenberg and WordPress</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/#upcoming-learn-wordpress-online-workshops">Upcoming Learn WordPress online workshops </a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/#0-p">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/#2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</a></li><li><a class="wp-block-table-of-contents__entry" href="https://gutenbergtimes.com/wordpress-6-9-beta-weekend-edition-346/#3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</a></li></ol></nav>\n</div></div>\n</section>\n\n\n<p><strong>This week in WordPress</strong> is a great long-running show by WPbuilds and host <strong>Nathan Wrigley</strong>. A panel of three people chats about last week’s WordPress news. They comment, explain and present addtional view points. It’s loosely inspired by “This week in Google” an even longer-running show of the <a href="https://twit.tv/">This week in Tech (TWiT) network</a> that was <a href="https://www.twit.community/t/this-week-in-google-is-becoming-intelligent-machines/17988">renamed</a> at the beginning of this year to <a href="https://twit.tv/shows/intelligent-machines"><strong>Intelligent Machines.</strong></a> With Jeff Jarvis, Leo LaPorte and others. It’s my favorite podcast. But I digress. </p>\n\n\n\n<p>In the latest episode, <a href="https://wpbuilds.com/2025/10/21/this-week-in-wordpress-353/"><strong>This week in WordPress 353</strong></a>, <strong>Michelle Frechette</strong>, <strong>Tim Nash</strong>, <strong>Nathan Wrigley</strong> and yours truly discussed the great Internet outage of 2025 aka AWS outage, the WordFence Security Report, WordPress 6.9 upcoming features, Gutenberg updates, and Tammie Lister’s fun blocks and so much more. <a href="https://www.youtube.com/watch?v=ArFYfbkypA8">Listen in on YouTube</a> or your favorite Podcast app. </p>\n\n\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<h2 class="wp-block-heading" id="0-word-press-release-information">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, reported that <a href="https://www.therepository.email/wordpress-6-9-beta-1-now-available-and-ready-for-testing"><strong>WordPress 6.9 Beta 1 Now Available and Ready for Testing</strong></a> and gives and overview of the features and also what’s didn’t make it into the release, a nice recap on the progress of the Admin Redesign.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>Besides WordPress 6.9 Beta, the fabulous crew of contributors also <a href="https://github.com/WordPress/gutenberg/releases/tag/v21.9.0"><strong>released Gutenberg 21.9.</strong></a> It brings three new blocks: MathML, Term name and Term Count blocks, the latter two used in the context of the new Term Query block. The <code>allowedBlocks</code> feature has been expanded to all blocks and users can also use the new UI tools to controls allowed blocks for templates and patterns, without writing code or editing raw block markup. Hide/show block features was added also to synced patterns and template parts. It can also be called upon via Command Palette and keyboard shortcut <kbd>cmd/ctrl+shift+H</kbd>. </p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Isabel Brison</strong>, JavaScript developer at Automattic and core contributor, joined me on the podcast and filled various knowledge gaps about the updates in this release. We also had great fun discussing WordPress 6.9 features, soon coming to your a WordPress instance near you. </p>\n\n\n\n<div class="wp-block-group has-light-background-background-color has-background"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">\n<p><img alt="🎙" class="wp-smiley" src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f399.png" style="height: 1em;" /> The latest episode is <a href="https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a> with <strong>Ellen Bauer</strong>, project lead at Automattic. </p>\n\n\n\n<figure class="wp-block-image size-full is-style-no-vertical-margin"><img alt="Gutenberg Changelog 124 with Ellen Bauer and Birgit Pauli-Haack" class="wp-image-42695" height="185" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-07-at-18.56.39.png?resize=652%2C185&ssl=1" width="652" /></figure>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div></div></div>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<h2 class="wp-block-heading" id="upcoming-learn-wordpress-online-workshops">Upcoming Learn WordPress online workshops </h2>\n\n\n\n<p>On <strong>Thursday, Oct 30, 10:00 UTC</strong>, <strong>Maruti Mohanty</strong> will hold a workshop and show off <a href="https://www.meetup.com/learn-wordpress-online-workshops/events/311670069/"><strong>WordPress 6.8 Features in Action + 6.9 Sneak Peek: A Hands-On Workshop.</strong></a></p>\n\n\n\n<p>On <strong>Thursday, Oct 30, at 20:00 UTC</strong>, <strong>Velda Christensen</strong>‘s workshop will be about <strong><a href="https://www.meetup.com/learn-wordpress-online-workshops/events/311632066">Landing Pages, Posts, & More: Strategies for a Stronger Site</a></strong> -In this beginner-friendly workshop, we’ll explore simple ways to organize your WordPress content so visitors can easily find what they need and take the next step.</p>\n\n\n\n<p></p>\n\n\n\n<h2 class="wp-block-heading" id="0-p">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Brian Coords</strong> has the details on the latest release of WooCommerce 10.3. in his release post. <a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/"><strong>WooCommerce 10.3: COGS comes to core and MCP beta</strong></a> he highlights: </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-address-autocomplete-for-checkout-blocks-and-shortcode">Address autocomplete for Checkout blocks and shortcode</a></li>\n\n\n\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-product-collection-editor-improvements">Product Collection Editor improvements</a></li>\n\n\n\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-cost-of-goods-sold-cogs-is-here">Cost of Goods Sold (COGS) is here</a></li>\n\n\n\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-woocommerce-mcp-is-available-for-testing-in-beta">WooCommerce MCP is available for testing in beta.</a></li>\n\n\n\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-more-new-features-and-updates">More new features and updates</a></li>\n\n\n\n<li><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/#h-api-updates">API Updates</a></li>\n</ul>\n\n\n\n<figure class="wp-block-image size-full"><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/"><img alt="Product Collection editor improvements in Woo 10.3 " class="wp-image-42365" height="320" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/10/Product-collections-improvments-Woo-10.3.webp?resize=652%2C320&ssl=1" width="652" /></a></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong>Blocktober Fun</strong>, the October challenge to build a block a day with Automattic’s Telex, is almost over. This week, <strong>Tammie Lister</strong> prompted the Block building AI tool for another set of fun blocks: </p>\n\n\n\n<ul class="wp-block-list">\n<li><a href="https://blocktober.fun/sketch-image/">Sketch Image</a> </li>\n\n\n\n<li><a href="https://blocktober.fun/ripple-text/">Ripple Text </a></li>\n\n\n\n<li><a href="https://blocktober.fun/vhs-glitch/">VHS glitch</a></li>\n\n\n\n<li><a href="https://blocktober.fun/flip-card/">Flip Card</a></li>\n\n\n\n<li><a href="https://blocktober.fun/emoji-voting/">Emoji voting</a></li>\n</ul>\n\n\n\n<figure class="wp-block-image size-full"><img alt="" class="wp-image-42370" height="220" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/10/Screenshot-2025-10-23-at-10.33.01.png?resize=652%2C220&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p>A new fun plugin arrived at the WordPress plugin repository: It’s called <a href="https://wordpress.org/plugins/throwable/"><strong>Throwable</strong></a> by <a href="https://x.com/qarayahya"><strong>Qara Yahya</strong></a>, founder of BlockLayouts. Using it you can place buttons, paragraphs or image into the Throwable block. The adjust Gravity aka speed items fall and Bounce setting, and have some nice animation on your site. </p>\n\n\n\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-42369" height="477" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/10/throwable.png?resize=652%2C477&ssl=1" width="652" /></figure>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong><a href="https://x.com/justintadlock">Justin Tadlock</a></strong> released <a href="https://wordpress.org/plugins/x3p0-breadcrumbs/"><strong>Breadcrumbs Block v. 3.0</strong>.</a> The update includes support for the built-in Layout and Block Gap (Spacing) features in WordPress. “There are quite a few other changes and some notable bug fixes, particularly if you extend the block with custom code. Be sure to check out the changelog” he <a href="https://x.com/justintadlock/status/1971721876306382889">wrote on X.</a></p>\n\n\n\n<figure class="wp-block-image size-full"><img alt="" class="wp-image-42377" height="350" src="https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/10/Screenshot-2025-10-23-at-13.25.01.png?resize=652%2C350&ssl=1" width="652" /></figure>\n\n\n\n<h2 class="wp-block-heading" id="2-word-press-6-0-1-and-6-1-scheduled">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Sid Sharma</strong>, content creator from Nepal, demonstrates <a href="https://www.youtube.com/watch?v=sul4r-KjfAc"><strong>how to create a transparently floating sticky header in WordPress</strong></a>, all in the Site Editor for Block Themes.</p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;">\n<p><strong> <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/" rel="noreferrer noopener" target="_blank">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/">2020</a> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/">2021</a></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/">2022</a></strong></strong> | <strong><a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023">2023</a></strong> | <a href="https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/"><strong>2024</strong></a></p>\n</section>\n\n\n<h2 class="wp-block-heading" id="3-building-themes-for-fse-and-word-press">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p><strong>Seth Rubenstein</strong>, lead developer at the Pew Research Center and speaker at WordCamp US, chatted with <strong>Nathan Wrigley</strong> on the Jukebox podcast about <a href="https://wptavern.com/podcast/190-seth-rubenstein-on-block-composability-in-wordpress-future"><strong>Block Composability in WordPress’ Future</strong></a>. Rubinstein “shares fascinating stories from the work h e’s recently been doing. He breaks down what block composability really means, the ability to build modular, reusable, and even interactive blocks that work seamlessly together, empowering both developers and end users to create sophisticated web applications within the familiar WordPress block editor.” wrote Wrigley in his podcast show notes. </p>\n\n\n<div class="wp-block-newsletterglue-showhide ng-block" width="100%">\n<figure class="wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts"><div class="wp-block-embed__wrapper">\n\n</div></figure>\n</div>\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n\n<p><strong><a href="https://x.com/fellyph">Fellyph Cintra</a></strong>, developer advocate working for Automattic, published <a href="https://make.wordpress.org/playground/2025/10/23/things-you-might-have-missed-about-the-playground-project-over-the-past-few-months/"><strong>Things you might have missed about the Playground project over the past few months</strong></a>. It’s a great roundup post about the amazing work of the team. He mentions the PHP-Wasm changes, updates to the Playground CLI, the JavaScript API, how to use Playground with Playwright and the performance improvements with OPCache enabled by default. He also addresses rumors about missing features compared to traditional WordPress installs, noting that this gap is becoming less significant.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p>In preparation for the WordPress 6.9 Field Guide, <strong>André Maneiro</strong> just posted an update about the <a href="https://github.com/WordPress/gutenberg/issues/70936#issuecomment-3437790150"><strong>Fields API</strong></a>, that has been worked on for many Gutenberg releases. It lists functions and options with code examples. Updates on DataViews and DataForm are still to come. </p>\n\n\n<section class="wp-block-newsletterglue-callout undefined not-color-set" style="border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;">\n<p><strong><a href="https://gutenbergtimes.com/need-a-zip-from-master/">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href="https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href="mailto:pauli@gutenbergtimes.com">Email me </a>with your experience</p>\n\n\n\n<p><img alt="GitHub all releases" src="https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge" /></p>\n</section>\n\n\n<p class="has-text-align-center has-small-font-size"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href="mailto:pauli@gutenbergtimes.com">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity" />\n\n\n\n<p class="has-text-align-center has-small-font-size">For questions to be answered on the <a href="http://gutenbergtimes.com/podcast">Gutenberg Changelog</a>, <br />send them to <a href="mailto:changelog@gutenbergtimes.com">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />\n\n\n<section class="wp-block-newsletterglue-group" style="padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;">\n<p>Featured Image: Naples Beach photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n\n\n\n<p class="has-text-align-left"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action="https://gutenbergtimes.com/feed/" autocomplete="on" class="wp-block-newsletterglue-form ngl-form ngl-portrait" method="post"><div class="ngl-form-container"><div class="ngl-form-field" style="margin-bottom: 25px;"><label class="ngl-form-label" for="ngl_email"><br />Type in your Email address to subscribe.</label><div class="ngl-form-input"><input autocomplete="email" class="ngl-form-input-text" id="ngl_email" name="ngl_email" required="required" style="border-radius: 21px;" type="email" /></div></div><button class="ngl-form-button" style="background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;" type="submit">Subscribe</button><p class="ngl-form-text">We hate spam, too, and won’t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class="ngl-message-overlay"><div class="ngl-message-svg-wrap"><svg fill="none" height="24" stroke="#fff" stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"></polyline></svg></div><div class="ngl-message-overlay-text">Thanks for subscribing.</div></div><input id="ngl_list_id" name="ngl_list_id" type="hidden" value="26f81bd8ae" /><input id="ngl_double_optin" name="ngl_double_optin" type="hidden" value="yes" /></form>\n\n\n<hr class="wp-block-separator has-css-opacity is-style-wide" />\n</section>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 25 Oct 2025 02:53:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:18:"Birgit Pauli-Haack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Matt: Automattic 20 &amp; Counter-claims";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150355";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"https://ma.tt/2025/10/counter-claims/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2299:"<p>It’s a bit of <a href="https://automattic.com/">Automattic</a> lore, but although I founded the company in June 2005, <a href="https://www.cnet.com/">CNET</a> asked me to stay on for a few more months to finish out some projects, which I did. Our HR systems have me as the second employee, after <a href="https://odd.blog/">Donncha O Caoimh</a> (still at the company!) So today is my 20<sup>th</sup> anniversary at Automattic! It’s 20 years since I started hacking on <a href="https://akismet.com/">Akismet</a>, our first product, and on <a href="https://wordpress.com/">WordPress.com</a>.</p>\n\n\n\n<figure class="wp-block-image alignwide size-large"><img alt="" class="wp-image-150359" height="453" src="https://i0.wp.com/ma.tt/files/2025/10/IMG_0435-1024x768.jpeg?resize=604%2C453&quality=89&ssl=1" width="604" /></figure>\n\n\n\n<p>The team gave me a sweet surprise! I’ve been fighting for the open web for 20 years, and hope to do it for at least 20 more. There’s a lot of exciting behind-the-scenes stuff happening inside Automattic that also made this day special, but one significant thing is public.</p>\n\n\n\n<p>Automattic has finally had its first chance to file its counterclaims that spell out the bad actions of <a href="https://wpengine.com/">WP Engine</a> and <a href="https://www.silverlake.com/">Silver Lake</a>, <a href="https://techcrunch.com/2025/10/24/automattic-files-counterclaims-against-wp-engine-in-wordpress-lawsuit-alleging-trademark-misuse/">as reported here by TechCrunch</a>. You may recall that last month, <a href="https://ma.tt/2025/09/legal-win/">the court dismissed several of their most serious claims</a>, and they responded by filing an amended complaint. In our dogged defense of the free, open, and thriving WordPress ecosystem, Automattic responded today with a comprehensive counter-filing, <a href="https://automattic.com/wp-content/uploads/2025/10/automattic-counterclaims.pdf">which you can read in a 162-page PDF here about all the things WP Engine/Heather Brunner and Silver Lake did wrong</a>.</p>\n\n\n\n<p>We’ve got receipts!</p>\n\n\n\n<p>I don’t think WP Engine employees or investors were aware of the gaslighting they did, hopefully some of this is enlightening. And there’s a lot more discovery to go!</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 25 Oct 2025 02:14:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:97:"WordCamp Central: Bhopal Hosts WP Build Tour 2025: Empowering 1700+ Students Across Central India";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"https://central.wordcamp.org/?p=12042668";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"https://central.wordcamp.org/news/2025/10/bhopal-hosts-wp-build-tour-2025-empowering-1700-students-across-central-india/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:21792:"<p>WordPress Bhopal has been at the forefront when it comes to igniting young minds, empowering them with knowledge, generating new ways to achieve optimal and maximum value, and sparking a positive social impact— kind of feels like a motto. </p>\n\n\n\n<p>We love doing all of it!</p>\n\n\n\n<p>And as <a href="https://wpbhopal.org/">we</a> proudly complete our <strong>10th year of formation</strong> (Oct. 2nd), this year in particular, we’ve been targeting ways to amplify our impact. A special highlight was EmpowerWP Bhopal (Women’s Day event), where we hosted women in different stages & walks of their lives and demonstrated how WordPress & the community can support them in achieving/expanding their potential. The response was heartwarming.</p>\n\n\n\n<p><a href="https://central.wordcamp.org/news/2025/04/empowerwp-bhopal-2025-a-journey-of-inclusion-and-impact/">Read more about EmpowerWP Bhopal 2025</a></p>\n\n\n\n<p>Post this event’s success, and that of last year’s <a href="https://asthajain.in/my-experience-as-pm-at-do_action-bhopal-2024/">do_action</a>, where we empowered NGOs by building their websites, it felt only natural that the next chapter in our mission of <em>empowering the social community</em> should focus on the students. </p>\n\n\n\n<p>And honestly, why we feel more drawn towards the student community can be traced back to the fact that the genesis of the WP Bhopal community itself was by a second-year college student back in 2015. Ever since, we’ve been taking workshops in colleges of our city, but this year, it was more about formalising it and making it more impactful & grander than ever.</p>\n\n\n\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3061" src="https://asthajain.in/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-13-at-6.36.08-PM-1024x576.jpeg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n\n\n\n<p class="has-white-color has-blue-background-color has-text-color has-background has-link-color wp-elements-54e8d22bf0aa76571dde8c4451ca6aec">Being the only active chapter in the State of Madhya Pradesh—a state with 55 districts and over 400 cities—there was always a little nudge to take our initiative beyond our home, Bhopal.</p>\n\n\n\n<p>I still vividly remember while pitching sponsors for <a href="https://bhopal.wordcamp.org/2023/cheers-to-the-success-of-wordcamp-bhopal-2023-a-heartfelt-thank-you/">WordCamp Bhopal 2023</a>, the idea kept resurfacing: <em>the student community must benefit from this</em>. The lack of exposure and the gap between theory & practical skills is profusely felt. <a href="https://profiles.wordpress.org/ethicaladitya/">Aditya</a> often mentions that when he started with WordPress, it was purely out of his own interest, not something taught or exposed to him in his institute. For him, building websites was uncommon among his batchmates. And the truth is, the situation hasn’t changed, and we still need revitalisation to help the youth realise their potential. This became the agenda of this initiative.</p>\n\n\n\n<p>Too much foundation-building… now’s the time to reveal what I’ve so heartily been tucking in…</p>\n\n\n\n<h3 class="wp-block-heading has-text-align-center has-black-color has-white-background-color has-text-color has-background has-link-color wp-elements-8ce23c0821326885e4daea60f27a6275"><em><strong>WE ARE SO PROUD & DELIGHTED to share that possibly the largest event of its kind, so far—the WP Build Tour 2025—has been successfully organised, impacting and empowering more than 1700 students across Madhya Pradesh in one go!</strong></em></h3>\n\n\n\n<h2 class="wp-block-heading">What’s in the Name? And Why This Matters.</h2>\n\n\n\n<p>The name came after much thought. We wanted it to reflect the core idea: <em><strong>Tour</strong></em> to capture the essence of a tour bus going around the State, empowering students (especially first-timers) to <em><strong>Build</strong></em> their very first WordPress websites, apart from expanding their technical confidence.</p>\n\n\n\n<p>The mission was rooted in our identity as the only active WP chapter in Madhya Pradesh:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Expanding our reach to more students across the State.</li>\n\n\n\n<li>Spreading WordPress awareness to inspire new local chapters</li>\n\n\n\n<li>Giving students confidence to bring their ideas online</li>\n</ul>\n\n\n\n<p>This plan was a win-win for us personally, for the community, and for the social cause we stand for.</p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-full is-resized" id="logo"><img alt="" class="wp-image-3073" src="https://asthajain.in/wp-content/uploads/2025/09/120a9bb6-03ab-4991-9ad3-644d5bb8677e.jpg" style="width: 623px; height: auto;" /><figcaption class="wp-element-caption">WordPress Bhopal x WP Build Tour</figcaption></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>\n</div>\n\n\n\n<h2 class="wp-block-heading">The Planning Phase: How Did We Pull This Off?</h2>\n\n\n\n<p>The initial plan was to cover colleges in major cities. Ties with GDG (Google Developer Groups) communities and college clubs helped spread the word and support with arrangements that differed from college to college.</p>\n\n\n\n<p>Interests were called in from colleges. Once we had a number, like the location, student profiles, number of students, etc, we initiated the process. We designated volunteers from each college to be a bridge, because, of course, they know the best way in there. Each college had around 120-600 students in one sitting.</p>\n\n\n\n<p><em>Thanks to their support, we were able to pull this off smoothly. Special shout-outs to: SIRT Student Body (Bhopal), Advance Studies Club- Medicaps Indore, GDG Indore & E-Cell, SATI Vidisha.</em></p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3058" src="https://asthajain.in/wp-content/uploads/2025/09/IMG_5148-1024x768.jpg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-3060" src="https://asthajain.in/wp-content/uploads/2025/09/IMG_6283-1024x768.jpg" /></figure>\n</div>\n</div>\n\n\n\n<p>Sessions were designed for all levels, no matter the technical background. We were conscious of common hurdles & from day zero of planning, we decided to remove those barriers at first instance. In this regard, at preliminary registration itself, students were guided to apply for the <strong>GitHub Education Pack</strong>, so by the event day, they have access to <span style="text-decoration: underline;">free domains & developer tools</span>. For hosting, we relied on <strong>InfinityFree</strong> and <strong>FreeHosting.com</strong>. Sometimes, a challenge was GitHub taking too long to approve the account(s), so the backup was to manage through <em><strong>subdomains</strong></em> from InfinityFree and additional free hosting setups.</p>\n\n\n\n<p>The setup also included swags and refreshments to keep up with the momentum. Thought was put into keeping those as relevant as possible. Participants were provided with <a href="https://central.wordcamp.org/feed/#cleaning-kit">mini cleaning kits</a> to take home. For refreshments, we relied on the quick & easy- Pizzas & Burgers along with beverages.</p>\n\n\n\n<h2 class="wp-block-heading">Building Website in a Day: The Possibility</h2>\n\n\n\n<p>Now that’s a given, building your own website (properly) takes time— planning, ideation, resources, so what’s the catch? No catch, really. Here, with a 4–5 hour workshop, we wanted students to experience the spark of: <em>“I can actually do this.”</em> The pressure wasn’t to build the whole of it in one day but to cover all the basics then & there. So the next time they open it, it’s only to further mould it as per their requirements.</p>\n\n\n\n<p>From purchasing a domain, to pointing DNS records, to watching DNS propagation happen live—and finally installing WordPress—it was a crash course in turning abstract concepts into real, working websites.</p>\n\n\n\n<p>And the output? A portfolio, a blog, a project showcase, even startup ideas. The pride was real. Social media lit up with links saying, <em>“We built this.”</em></p>\n\n\n\n<p>Honestly, we were a little sceptical at times—like when there weren’t many doubts, or when lunch was announced and students walked out. We wondered, <em>“Will they even come back?”</em> Because this wasn’t meant to be just another attendance exercise; we wanted it to be voluntary, something they <em>chose</em> to be part of.</p>\n\n\n\n<p>But there was consensus in the team that even if just one kid shows up, we’ll keep going. And guess what? Not only did they come back, but they jumped in with full energy. Doubts, queries, ideas, thoughts—their enthusiasm blew us away. It’s hard to put into words how fascinating it was to see the effort actually paying off.</p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large"><img alt="" class="wp-image-3047" src="https://asthajain.in/wp-content/uploads/2025/09/51d60eb2-eaf0-4611-aa65-b7965d8ebf04-1024x768.jpg" /></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large is-resized"><img alt="" class="wp-image-3064" src="https://asthajain.in/wp-content/uploads/2025/09/IMG_4180-1215x2160-1-edited.jpeg" style="width: 348px; height: auto;" /></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3052" src="https://asthajain.in/wp-content/uploads/2025/09/b9791e02-3291-4c7e-a633-82b4f964c873-2-768x1024.jpg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n</div>\n</div>\n\n\n\n<p>By the end, every participant had not just knowledge but something concrete: a live website, <em><strong>their website</strong></em>! Photos, reels, and hashtags like #WPBuildTourBPL amplified the energy far beyond the classrooms.</p>\n\n\n\n<h3 class="wp-block-heading">Beyond the Website</h3>\n\n\n\n<p>Though the primary goal was to help students build their own websites from scratch, the sessions were also designed to introduce them to the WordPress community. They covered career opportunities, ways to get involved, and the benefits the community offers. Students were given an overview of how to contribute, how chapters operate, and how they can become a part of the ecosystem. The aim was to make the experience not just hands-on but also empowering—equipping them to pave their own path, with community connection as a strong starting point. This also supports our broader goal of fostering new chapters across the state.</p>\n\n\n\n<h2 class="wp-block-heading">The Route We Took</h2>\n\n\n\n<p><em>We’re very thankful to the college administrations of each institute we took the Tour to for their trust and support throughout. This post would be failing in its agenda without giving them due credit for opening their doors and believing in the vision of the WP Build Tour.</em> </p>\n\n\n\n<p>Here’s where the Tour travelled:</p>\n\n\n\n<ul class="wp-block-list">\n<li>Sagar Institute of Research & Technology, Bhopal<br /></li>\n\n\n\n<li>Oriental Institute of Science & Technology, Bhopal<br /></li>\n\n\n\n<li>Samrat Ashok Technological Institute, Vidisha<br /></li>\n\n\n\n<li>Acropolis Institute of Technology & Research, Indore<br /></li>\n\n\n\n<li>Medicaps University, Indore<br /></li>\n\n\n\n<li>Oriental College of Technology, Bhopal</li>\n</ul>\n\n\n\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3067" src="https://asthajain.in/wp-content/uploads/2025/09/IMG_6666-1024x410.jpg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n\n\n\n<p><br />Each stop added its own flavour and warmth. If we could’ve squeezed in more, we surely would have, but even with the stretch, it was worth it.</p>\n\n\n\n<p>The social media was our backbone—announcements, posts, designs, keeping the buzz alive. Big thanks to <em><a href="https://www.linkedin.com/in/mansi-chaturvedi-298832259/?original_referer=https%3A%2F%2Fwww%2Egoogle%2Ecom%2F&originalSubdomain=in">Mansi</a></em> (also our go-to content person), along with <em>Md. <a href="https://www.linkedin.com/in/md-farid-1aa563291/">Farid</a></em>, <em><a href="https://www.linkedin.com/in/amit-vishwakarma-b46380193/">Amit</a></em> & <em><a href="https://www.linkedin.com/in/riddhima-singh-b3b860274?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">Riddhima</a></em>. And yep, that cool <a href="https://central.wordcamp.org/feed/#logo">Build Tour logo </a>you see up there? Amit designed it.</p>\n\n\n\n<p>On the ground, <a href="https://www.linkedin.com/in/shashank-jain1">Shashank</a>, <a href="https://www.kapilarya.com">Kapil</a>, and <a href="https://www.linkedin.com/in/shivammishra-styx">Shivam</a> held things together—guiding students through technicalities, taking charge of arrangements, managing logistics, and even stepping in as resource persons when needed. Shashank went the extra mile, balancing all this while also supporting social media.</p>\n\n\n\n<p><em><a href="http://adityashah.dev">Aditya</a></em>, <em><a href="https://guneet.in">Guneet</a></em>, and <a href="http://kripeshadwani.com">Kripesh</a> led as resource persons, bringing not only their WordPress expertise but also their effortless way of connecting with students. (Classic engineers with their own fanbase, haha!)<br /><br />Mayur, Anshika, Pooja, Malay, Ninay, Roshini, and Prabal each <a href="https://events.wordpress.org/bhopal/2025/wpbuildtour/organizers/">contributed</a> in various roles, adding strength to the endeavour.</p>\n\n\n\n<h2 class="wp-block-heading">The Sponsors who made this Possible</h2>\n\n\n\n<p>This tour wouldn’t have been possible the way it happened without our incredible sponsors. Gold Sponsors <strong>Jetpack, Bluehost, Woo, Hosting.com, Kinsta, StellarWP, </strong>and<strong> </strong>our Bronze Sponsor, <strong>ForthFocus</strong>. </p>\n\n\n\n<p>Their support helped us take the Tour across campuses in the best way possible, provide refreshments and swags, and equip students with the right resources.</p>\n\n\n\n<p>And of course, a big thanks to the global WordPress community for having our back throughout!</p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large is-resized wp-lightbox-container"><img alt="" class="wp-image-3054" src="https://asthajain.in/wp-content/uploads/2025/09/e236d14a-79a5-4a3a-80d1-ae65a8c11499-768x1024.jpg" style="width: 146px; height: auto;" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button><figcaption class="wp-element-caption">Giveaway winner</figcaption></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3048" src="https://asthajain.in/wp-content/uploads/2025/09/930f22b9-d597-4749-b328-7d6b8c5a37fa-2-1024x592.jpg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large" id="cleaning-kit"><img alt="" class="wp-image-3074" src="https://asthajain.in/wp-content/uploads/2025/09/IMG_6671-795x1024.jpg" /><figcaption class="wp-element-caption">Swags</figcaption></figure>\n</div>\n</div>\n\n\n\n<h2 class="wp-block-heading">Moments beyond: In our Hearts</h2>\n\n\n\n<p>Some moments will stay with us forever:</p>\n\n\n\n<ul class="wp-block-list">\n<li>The warmth of teamwork, swag, and refreshments turns workshops into mini-celebrations</li>\n\n\n\n<li>The collective gasp when a site went live</li>\n\n\n\n<li>Proud social media posts </li>\n\n\n\n<li>Smiles of giveaway winners walking away with specially curated kits.</li>\n</ul>\n\n\n\n<p>Because at its heart, the WP Build Tour 2025 was never just about code or content. It was about confidence. About potential realised. About futures being built—one student, one website, one breakthrough at a time.</p>\n\n\n\n<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3062" src="https://asthajain.in/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-15-at-7.17.55-PM-501x1024.jpeg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button></figure>\n</div>\n\n\n\n<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">\n<figure class="wp-block-image size-large wp-lightbox-container"><img alt="" class="wp-image-3066" src="https://asthajain.in/wp-content/uploads/2025/09/32bf637e-10fc-492f-b1c3-3171f6ffadab-edited.jpg" /><button class="lightbox-trigger" type="button">\n <svg fill="none" height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg">\n <path d="M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z" fill="#fff">\n </svg>\n </button><figcaption class="wp-element-caption">We were featured in local newspapers</figcaption></figure>\n</div>\n</div>\n\n\n\n<figure class="wp-block-pullquote has-black-color has-text-color has-link-color wp-elements-542803687f2e82ce724dbba5a67a7e9f"><blockquote><p>Organising events is one thing, and adding purpose to them takes it to another level. For us in Bhopal, organising events has never been just about the “event.” It’s about going a step further and sparking change, no matter how small. Thankfully, the WordPress community has always been open and kind enough to welcome such ideas and encourage us to push boundaries. And for that, we’re so grateful!</p></blockquote></figure>\n\n\n\n<p><em>The WP Build Tour 2025 wasn’t the end but rather the beginning of a movement. And as we now look forward to <a href="https://bhopal.wordcamp.org/2025/">WordCamp Bhopal 2025</a> this December, we carry with us 1,700 sparks of possibility, ready to light up the future of WordPress and beyond.</em></p>\n\n\n\n<p></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Oct 2025 19:36:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Astha Jain";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:47;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Matt: Under the Weather";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150347";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"https://ma.tt/2025/10/under-the-weather/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:638:"<p>I don’t get sick very often, but when it catches up to me it hits like a freight train. Just trying to keep all the plates spinning while operating at 10% capacity, been sleeping a ton. Today was in some ways better, some ways worse than yesterday. I try to avoid hospitals and emergency care, as you wind up in their system, so I’m trying to ride this one out at home. Had to cancel a bunch of travel and conferences and meetings I was looking forward to this week. Really makes you appreciate and be grateful for good health — it’s a baseline for everything else and I’m blessed with it 99% of the time.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Oct 2025 03:14:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:48;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:13:"Matt: New Woo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:23:"https://ma.tt/?p=150338";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:30:"https://ma.tt/2025/10/new-woo/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:902:"<p><a href="https://developer.woocommerce.com/2025/10/22/woocommerce-10-3-cogs-comes-to-core-and-mcp-beta/">WooCommerce 10.3 is out</a>, just in time for Black Friday / Cyber Monday, with some nice improvements to the checkout experience, tracking cost of goods sold, and a new beta MCP server, “This new feature enables AI assistants like Claude, Cursor, VS Code, or any other MCP-compatible client to interact directly with WooCommerce stores through a standardized protocol, opening up new possibilities for AI-assisted store management and development workflows.” <a href="https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/">You can also help out in testing WordPress 6.9</a>, which comes out on December 2<sup>nd</sup>.</p>\n\n\n\n<p>If I’m slow on anything right now, I apologize. I’ve got some flu/Covid thing, so I’m operating at reduced capacity.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Oct 2025 06:54:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:21:"\n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"Open Channels FM: The Power of Customer Support and Building Relationships in SaaS";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"https://openchannels.fm/?p=110952";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"https://openchannels.fm/the-power-of-customer-support-and-building-relationships-in-saas/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:162:"Strong customer support is key for SaaS success. Building relationships with users and hosting providers boosts satisfaction and can be a powerful marketing tool.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 22 Oct 2025 12:56:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"BobWP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";O:48:"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary":1:{s:7:"\0*\0data";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 16 Nov 2025 06:48:13 GMT";s:12:"content-type";s:8:"text/xml";s:13:"last-modified";s:29:"Sun, 16 Nov 2025 06:30:20 GMT";s:4:"vary";s:15:"Accept-Encoding";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:16:"content-encoding";s:4:"gzip";s:7:"alt-svc";s:19:"h3=":443"; ma=86400";s:4:"x-nc";s:9:"HIT ord 1";}}s:5:"build";i:1727716820;s:21:"cache_expiration_time";i:1763318893;s:23:"__cache_expiration_time";i:1763318893;}', 'off');
INSERT INTO `wp8u_options` VALUES
(1105, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1763318893', 'off'),
(1106, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1763275693', 'off'),
(1107, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1763318894', 'off'),
(1108, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/''>WordPress 6.9 Release Candidate 1</a></li><li><a class=''rsswidget'' href=''https://wordpress.org/news/2025/11/wordpress-6-9-beta-3/''>WordPress 6.9 Beta 3</a></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://gutenbergtimes.com/wordpress-6-9-dev-notes-wordcamp-canada-talks-interactivity-api-weekend-edition-349/''>Gutenberg Times: WordPress 6.9 Dev Notes, WordCamp Canada talks, Interactivity API — Weekend Edition #349</a></li><li><a class=''rsswidget'' href=''https://ma.tt/2025/11/kanyes-back/''>Matt: Kanye’s Back</a></li><li><a class=''rsswidget'' href=''https://jakespurlock.com/2025/11/raptorize-it-15-years-later-now-with-blocks/''>Jake Spurlock: Raptorize It: 15 Years Later, Now With Blocks</a></li></ul></div>', 'off'),
(1109, '_site_transient_timeout_available_translations', '1763286519', 'off'),
(1110, '_site_transient_available_translations', 'a:131:{s:2:"af";a:8:{s:8:"language";s:2:"af";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2021-05-13 15:59:22";s:12:"english_name";s:9:"Afrikaans";s:11:"native_name";s:9:"Afrikaans";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip";s:3:"iso";a:2:{i:1;s:2:"af";i:2;s:3:"afr";}s:7:"strings";a:1:{s:8:"continue";s:10:"Gaan voort";}}s:2:"am";a:8:{s:8:"language";s:2:"am";s:7:"version";s:6:"6.0.11";s:7:"updated";s:19:"2022-09-29 20:43:49";s:12:"english_name";s:7:"Amharic";s:11:"native_name";s:12:"አማርኛ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.0.11/am.zip";s:3:"iso";a:2:{i:1;s:2:"am";i:2;s:3:"amh";}s:7:"strings";a:1:{s:8:"continue";s:9:"ቀጥል";}}s:3:"arg";a:8:{s:8:"language";s:3:"arg";s:7:"version";s:8:"6.2-beta";s:7:"updated";s:19:"2022-09-22 16:46:56";s:12:"english_name";s:9:"Aragonese";s:11:"native_name";s:9:"Aragonés";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip";s:3:"iso";a:3:{i:1;s:2:"an";i:2;s:3:"arg";i:3;s:3:"arg";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continar";}}s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:5:"6.4.7";s:7:"updated";s:19:"2024-02-13 12:49:38";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.4.7/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:12:"متابعة";}}s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:6:"4.8.27";s:7:"updated";s:19:"2017-01-26 15:42:35";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.8.27/ary.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"as";a:8:{s:8:"language";s:2:"as";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-07-10 08:09:09";s:12:"english_name";s:8:"Assamese";s:11:"native_name";s:21:"অসমীয়া";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/as.zip";s:3:"iso";a:3:{i:1;s:2:"as";i:2;s:3:"asm";i:3;s:3:"asm";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:3:"azb";a:8:{s:8:"language";s:3:"azb";s:7:"version";s:5:"6.4.7";s:7:"updated";s:19:"2024-01-19 08:58:31";s:12:"english_name";s:17:"South Azerbaijani";s:11:"native_name";s:29:"گؤنئی آذربایجان";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.4.7/azb.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:3;s:3:"azb";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-06 00:09:27";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:3:"bel";a:8:{s:8:"language";s:3:"bel";s:7:"version";s:6:"4.9.28";s:7:"updated";s:19:"2024-12-26 00:37:42";s:12:"english_name";s:10:"Belarusian";s:11:"native_name";s:29:"Беларуская мова";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.9.28/bel.zip";s:3:"iso";a:2:{i:1;s:2:"be";i:2;s:3:"bel";}s:7:"strings";a:1:{s:8:"continue";s:20:"Працягнуць";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-06-26 09:35:39";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:12:"Напред";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-01 16:41:58";s:12:"english_name";s:20:"Bengali (Bangladesh)";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/bn_BD.zip";s:3:"iso";a:1:{i:1;s:2:"bn";}s:7:"strings";a:1:{s:8:"continue";s:28:"চালিয়ে যান";}}s:2:"bo";a:8:{s:8:"language";s:2:"bo";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2020-10-30 03:24:38";s:12:"english_name";s:7:"Tibetan";s:11:"native_name";s:21:"བོད་ཡིག";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip";s:3:"iso";a:2:{i:1;s:2:"bo";i:2;s:3:"tib";}s:7:"strings";a:1:{s:8:"continue";s:33:"མུ་མཐུད་དུ།";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2023-02-22 20:45:53";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.2.8/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-15 10:17:56";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:3:"ceb";a:8:{s:8:"language";s:3:"ceb";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-02 17:25:51";s:12:"english_name";s:7:"Cebuano";s:11:"native_name";s:7:"Cebuano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip";s:3:"iso";a:2:{i:2;s:3:"ceb";i:3;s:3:"ceb";}s:7:"strings";a:1:{s:8:"continue";s:7:"Padayun";}}s:5:"cs_CZ";a:8:{s:8:"language";s:5:"cs_CZ";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 20:45:59";s:12:"english_name";s:5:"Czech";s:11:"native_name";s:9:"Čeština";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/cs_CZ.zip";s:3:"iso";a:2:{i:1;s:2:"cs";i:2;s:3:"ces";}s:7:"strings";a:1:{s:8:"continue";s:11:"Pokračovat";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-05 08:42:11";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 22:31:45";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-07-28 10:25:03";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-16 00:56:10";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:12:"de_DE_formal";a:8:{s:8:"language";s:12:"de_DE_formal";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-16 00:55:49";s:12:"english_name";s:15:"German (Formal)";s:11:"native_name";s:13:"Deutsch (Sie)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/6.8.3/de_DE_formal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:14:"de_CH_informal";a:8:{s:8:"language";s:14:"de_CH_informal";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-07-28 10:25:24";s:12:"english_name";s:30:"German (Switzerland, Informal)";s:11:"native_name";s:21:"Deutsch (Schweiz, Du)";s:7:"package";s:73:"https://downloads.wordpress.org/translation/core/6.8.3/de_CH_informal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:5:"de_AT";a:8:{s:8:"language";s:5:"de_AT";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-23 12:02:03";s:12:"english_name";s:16:"German (Austria)";s:11:"native_name";s:21:"Deutsch (Österreich)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/de_AT.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:6:"Weiter";}}s:3:"dsb";a:8:{s:8:"language";s:3:"dsb";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2022-07-16 12:13:09";s:12:"english_name";s:13:"Lower Sorbian";s:11:"native_name";s:16:"Dolnoserbšćina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.2.8/dsb.zip";s:3:"iso";a:2:{i:2;s:3:"dsb";i:3;s:3:"dsb";}s:7:"strings";a:1:{s:8:"continue";s:5:"Dalej";}}s:3:"dzo";a:8:{s:8:"language";s:3:"dzo";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-06-29 08:59:03";s:12:"english_name";s:8:"Dzongkha";s:11:"native_name";s:18:"རྫོང་ཁ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip";s:3:"iso";a:2:{i:1;s:2:"dz";i:2;s:3:"dzo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-04 22:35:01";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_ZA";a:8:{s:8:"language";s:5:"en_ZA";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-07-29 13:22:09";s:12:"english_name";s:22:"English (South Africa)";s:11:"native_name";s:22:"English (South Africa)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/en_ZA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-08-19 23:02:24";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-05-22 11:56:25";s:12:"english_name";s:21:"English (New Zealand)";s:11:"native_name";s:21:"English (New Zealand)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/en_NZ.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 00:57:20";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 14:37:33";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-08-19 08:40:47";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2024-10-16 21:04:12";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_PE.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 13:01:35";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_MX.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_AR";a:8:{s:8:"language";s:5:"es_AR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 01:52:15";s:12:"english_name";s:19:"Spanish (Argentina)";s:11:"native_name";s:21:"Español de Argentina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_AR.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-14 01:36:14";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_CL.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-14 09:07:23";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_ES.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CO";a:8:{s:8:"language";s:5:"es_CO";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-16 01:23:24";s:12:"english_name";s:18:"Spanish (Colombia)";s:11:"native_name";s:20:"Español de Colombia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_CO.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_VE";a:8:{s:8:"language";s:5:"es_VE";s:7:"version";s:5:"6.4.7";s:7:"updated";s:19:"2023-10-16 16:00:04";s:12:"english_name";s:19:"Spanish (Venezuela)";s:11:"native_name";s:21:"Español de Venezuela";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.4.7/es_VE.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_EC";a:8:{s:8:"language";s:5:"es_EC";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2023-04-21 13:32:10";s:12:"english_name";s:17:"Spanish (Ecuador)";s:11:"native_name";s:19:"Español de Ecuador";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.2.8/es_EC.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_DO";a:8:{s:8:"language";s:5:"es_DO";s:7:"version";s:6:"5.8.12";s:7:"updated";s:19:"2021-10-08 14:32:50";s:12:"english_name";s:28:"Spanish (Dominican Republic)";s:11:"native_name";s:33:"Español de República Dominicana";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/5.8.12/es_DO.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_UY";a:8:{s:8:"language";s:5:"es_UY";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2021-03-31 18:33:26";s:12:"english_name";s:17:"Spanish (Uruguay)";s:11:"native_name";s:19:"Español de Uruguay";s:7:"package";s:67:"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PR";a:8:{s:8:"language";s:5:"es_PR";s:7:"version";s:6:"5.4.18";s:7:"updated";s:19:"2020-04-29 15:36:59";s:12:"english_name";s:21:"Spanish (Puerto Rico)";s:11:"native_name";s:23:"Español de Puerto Rico";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/5.4.18/es_PR.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_GT";a:8:{s:8:"language";s:5:"es_GT";s:7:"version";s:6:"5.2.23";s:7:"updated";s:19:"2019-03-02 06:35:01";s:12:"english_name";s:19:"Spanish (Guatemala)";s:11:"native_name";s:21:"Español de Guatemala";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/5.2.23/es_GT.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CR";a:8:{s:8:"language";s:5:"es_CR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-01 22:54:47";s:12:"english_name";s:20:"Spanish (Costa Rica)";s:11:"native_name";s:22:"Español de Costa Rica";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/es_CR.zip";s:3:"iso";a:3:{i:1;s:2:"es";i:2;s:3:"spa";i:3;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"et";a:8:{s:8:"language";s:2:"et";s:7:"version";s:5:"6.5.5";s:7:"updated";s:19:"2024-06-06 09:50:37";s:12:"english_name";s:8:"Estonian";s:11:"native_name";s:5:"Eesti";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.5.5/et.zip";s:3:"iso";a:2:{i:1;s:2:"et";i:2;s:3:"est";}s:7:"strings";a:1:{s:8:"continue";s:6:"Jätka";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 18:29:35";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_AF";a:8:{s:8:"language";s:5:"fa_AF";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-02-14 17:29:08";s:12:"english_name";s:21:"Persian (Afghanistan)";s:11:"native_name";s:31:"(فارسی (افغانستان";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/fa_AF.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-02 18:18:37";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 19:36:59";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_CA";a:8:{s:8:"language";s:5:"fr_CA";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-09-25 05:20:17";s:12:"english_name";s:15:"French (Canada)";s:11:"native_name";s:19:"Français du Canada";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/fr_CA.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-14 09:25:54";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:5:"6.5.7";s:7:"updated";s:19:"2024-02-01 23:56:53";s:12:"english_name";s:16:"French (Belgium)";s:11:"native_name";s:21:"Français de Belgique";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.5.7/fr_BE.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:3:"fur";a:8:{s:8:"language";s:3:"fur";s:7:"version";s:6:"4.8.27";s:7:"updated";s:19:"2023-04-30 13:56:46";s:12:"english_name";s:8:"Friulian";s:11:"native_name";s:8:"Friulian";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.8.27/fur.zip";s:3:"iso";a:2:{i:2;s:3:"fur";i:3;s:3:"fur";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"fy";a:8:{s:8:"language";s:2:"fy";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2025-10-21 16:35:04";s:12:"english_name";s:7:"Frisian";s:11:"native_name";s:5:"Frysk";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.2.8/fy.zip";s:3:"iso";a:2:{i:1;s:2:"fy";i:2;s:3:"fry";}s:7:"strings";a:1:{s:8:"continue";s:9:"Trochgean";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-08-23 17:41:37";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 09:34:11";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"gu";a:8:{s:8:"language";s:2:"gu";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-08-29 04:27:18";s:12:"english_name";s:8:"Gujarati";s:11:"native_name";s:21:"ગુજરાતી";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/gu.zip";s:3:"iso";a:2:{i:1;s:2:"gu";i:2;s:3:"guj";}s:7:"strings";a:1:{s:8:"continue";s:25:"ચાલુ રાખો";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:6:"4.4.34";s:7:"updated";s:19:"2015-12-05 00:59:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.4.34/haz.zip";s:3:"iso";a:1:{i:3;s:3:"haz";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2024-05-04 18:39:24";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.2.8/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:8:"המשך";}}s:5:"hi_IN";a:8:{s:8:"language";s:5:"hi_IN";s:7:"version";s:5:"6.4.7";s:7:"updated";s:19:"2025-02-06 05:17:11";s:12:"english_name";s:5:"Hindi";s:11:"native_name";s:18:"हिन्दी";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.4.7/hi_IN.zip";s:3:"iso";a:2:{i:1;s:2:"hi";i:2;s:3:"hin";}s:7:"strings";a:1:{s:8:"continue";s:25:"जारी रखें";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 18:52:54";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:3:"hsb";a:8:{s:8:"language";s:3:"hsb";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2023-02-22 17:37:32";s:12:"english_name";s:13:"Upper Sorbian";s:11:"native_name";s:17:"Hornjoserbšćina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.2.8/hsb.zip";s:3:"iso";a:2:{i:2;s:3:"hsb";i:3;s:3:"hsb";}s:7:"strings";a:1:{s:8:"continue";s:4:"Dale";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-18 06:36:37";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:10:"Folytatás";}}s:2:"hy";a:8:{s:8:"language";s:2:"hy";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-12-03 16:21:10";s:12:"english_name";s:8:"Armenian";s:11:"native_name";s:14:"Հայերեն";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip";s:3:"iso";a:2:{i:1;s:2:"hy";i:2;s:3:"hye";}s:7:"strings";a:1:{s:8:"continue";s:20:"Շարունակել";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-23 03:46:40";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"is_IS";a:8:{s:8:"language";s:5:"is_IS";s:7:"version";s:6:"4.9.28";s:7:"updated";s:19:"2018-12-11 10:40:02";s:12:"english_name";s:9:"Icelandic";s:11:"native_name";s:9:"Íslenska";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.9.28/is_IS.zip";s:3:"iso";a:2:{i:1;s:2:"is";i:2;s:3:"isl";}s:7:"strings";a:1:{s:8:"continue";s:6:"Áfram";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-14 21:50:55";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 12:44:54";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:6:"次へ";}}s:5:"jv_ID";a:8:{s:8:"language";s:5:"jv_ID";s:7:"version";s:6:"4.9.28";s:7:"updated";s:19:"2019-02-16 23:58:56";s:12:"english_name";s:8:"Javanese";s:11:"native_name";s:9:"Basa Jawa";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.9.28/jv_ID.zip";s:3:"iso";a:2:{i:1;s:2:"jv";i:2;s:3:"jav";}s:7:"strings";a:1:{s:8:"continue";s:9:"Nerusaké";}}s:5:"ka_GE";a:8:{s:8:"language";s:5:"ka_GE";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 09:28:17";s:12:"english_name";s:8:"Georgian";s:11:"native_name";s:21:"ქართული";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ka_GE.zip";s:3:"iso";a:2:{i:1;s:2:"ka";i:2;s:3:"kat";}s:7:"strings";a:1:{s:8:"continue";s:30:"გაგრძელება";}}s:3:"kab";a:8:{s:8:"language";s:3:"kab";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2023-07-05 11:40:39";s:12:"english_name";s:6:"Kabyle";s:11:"native_name";s:9:"Taqbaylit";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.2.8/kab.zip";s:3:"iso";a:2:{i:2;s:3:"kab";i:3;s:3:"kab";}s:7:"strings";a:1:{s:8:"continue";s:6:"Kemmel";}}s:2:"kk";a:8:{s:8:"language";s:2:"kk";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2024-07-18 02:49:24";s:12:"english_name";s:6:"Kazakh";s:11:"native_name";s:19:"Қазақ тілі";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/kk.zip";s:3:"iso";a:2:{i:1;s:2:"kk";i:2;s:3:"kaz";}s:7:"strings";a:1:{s:8:"continue";s:20:"Жалғастыру";}}s:2:"km";a:8:{s:8:"language";s:2:"km";s:7:"version";s:6:"5.2.23";s:7:"updated";s:19:"2019-06-10 16:18:28";s:12:"english_name";s:5:"Khmer";s:11:"native_name";s:27:"ភាសាខ្មែរ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/5.2.23/km.zip";s:3:"iso";a:2:{i:1;s:2:"km";i:2;s:3:"khm";}s:7:"strings";a:1:{s:8:"continue";s:12:"បន្ត";}}s:2:"kn";a:8:{s:8:"language";s:2:"kn";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-29 19:46:21";s:12:"english_name";s:7:"Kannada";s:11:"native_name";s:15:"ಕನ್ನಡ";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/kn.zip";s:3:"iso";a:2:{i:1;s:2:"kn";i:2;s:3:"kan";}s:7:"strings";a:1:{s:8:"continue";s:30:"ಮುಂದುವರಿಸು";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 07:27:03";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:3:"ckb";a:8:{s:8:"language";s:3:"ckb";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-10 20:09:25";s:12:"english_name";s:16:"Kurdish (Sorani)";s:11:"native_name";s:13:"كوردی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.8.3/ckb.zip";s:3:"iso";a:2:{i:1;s:2:"ku";i:3;s:3:"ckb";}s:7:"strings";a:1:{s:8:"continue";s:30:"بهردهوام به";}}s:3:"kir";a:8:{s:8:"language";s:3:"kir";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-15 12:39:47";s:12:"english_name";s:6:"Kyrgyz";s:11:"native_name";s:16:"Кыргызча";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.8.3/kir.zip";s:3:"iso";a:3:{i:1;s:2:"ky";i:2;s:3:"kir";i:3;s:3:"kir";}s:7:"strings";a:1:{s:8:"continue";s:14:"Улантуу";}}s:2:"lo";a:8:{s:8:"language";s:2:"lo";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-12 09:59:23";s:12:"english_name";s:3:"Lao";s:11:"native_name";s:21:"ພາສາລາວ";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip";s:3:"iso";a:2:{i:1;s:2:"lo";i:2;s:3:"lao";}s:7:"strings";a:1:{s:8:"continue";s:18:"ຕໍ່ໄປ";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-09-27 20:51:17";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:2:"lv";a:8:{s:8:"language";s:2:"lv";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-07-15 19:11:43";s:12:"english_name";s:7:"Latvian";s:11:"native_name";s:16:"Latviešu valoda";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/lv.zip";s:3:"iso";a:2:{i:1;s:2:"lv";i:2;s:3:"lav";}s:7:"strings";a:1:{s:8:"continue";s:9:"Turpināt";}}s:5:"mk_MK";a:8:{s:8:"language";s:5:"mk_MK";s:7:"version";s:6:"6.0.11";s:7:"updated";s:19:"2022-10-01 09:23:52";s:12:"english_name";s:10:"Macedonian";s:11:"native_name";s:31:"Македонски јазик";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/6.0.11/mk_MK.zip";s:3:"iso";a:2:{i:1;s:2:"mk";i:2;s:3:"mkd";}s:7:"strings";a:1:{s:8:"continue";s:16:"Продолжи";}}s:5:"ml_IN";a:8:{s:8:"language";s:5:"ml_IN";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 19:01:02";s:12:"english_name";s:9:"Malayalam";s:11:"native_name";s:18:"മലയാളം";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ml_IN.zip";s:3:"iso";a:2:{i:1;s:2:"ml";i:2;s:3:"mal";}s:7:"strings";a:1:{s:8:"continue";s:18:"തുടരുക";}}s:2:"mn";a:8:{s:8:"language";s:2:"mn";s:7:"version";s:5:"6.5.7";s:7:"updated";s:19:"2024-06-20 17:22:06";s:12:"english_name";s:9:"Mongolian";s:11:"native_name";s:12:"Монгол";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.5.7/mn.zip";s:3:"iso";a:2:{i:1;s:2:"mn";i:2;s:3:"mon";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"mr";a:8:{s:8:"language";s:2:"mr";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-08-26 17:30:52";s:12:"english_name";s:7:"Marathi";s:11:"native_name";s:15:"मराठी";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/mr.zip";s:3:"iso";a:2:{i:1;s:2:"mr";i:2;s:3:"mar";}s:7:"strings";a:1:{s:8:"continue";s:25:"सुरु ठेवा";}}s:5:"ms_MY";a:8:{s:8:"language";s:5:"ms_MY";s:7:"version";s:6:"5.5.17";s:7:"updated";s:19:"2022-03-11 13:52:22";s:12:"english_name";s:5:"Malay";s:11:"native_name";s:13:"Bahasa Melayu";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/5.5.17/ms_MY.zip";s:3:"iso";a:2:{i:1;s:2:"ms";i:2;s:3:"msa";}s:7:"strings";a:1:{s:8:"continue";s:8:"Teruskan";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:6:"4.2.39";s:7:"updated";s:19:"2017-12-26 11:57:10";s:12:"english_name";s:17:"Myanmar (Burmese)";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.2.39/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ဆောင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 20:17:31";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"ne_NP";a:8:{s:8:"language";s:5:"ne_NP";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-07 08:26:32";s:12:"english_name";s:6:"Nepali";s:11:"native_name";s:18:"नेपाली";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ne_NP.zip";s:3:"iso";a:2:{i:1;s:2:"ne";i:2;s:3:"nep";}s:7:"strings";a:1:{s:8:"continue";s:43:"जारी राख्नुहोस्";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 09:30:06";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nl_BE";a:8:{s:8:"language";s:5:"nl_BE";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 12:18:34";s:12:"english_name";s:15:"Dutch (Belgium)";s:11:"native_name";s:20:"Nederlands (België)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/nl_BE.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:12:"nl_NL_formal";a:8:{s:8:"language";s:12:"nl_NL_formal";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 09:58:40";s:12:"english_name";s:14:"Dutch (Formal)";s:11:"native_name";s:20:"Nederlands (Formeel)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/6.8.3/nl_NL_formal.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nn_NO";a:8:{s:8:"language";s:5:"nn_NO";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2021-03-18 10:59:16";s:12:"english_name";s:19:"Norwegian (Nynorsk)";s:11:"native_name";s:13:"Norsk nynorsk";s:7:"package";s:67:"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nn";i:2;s:3:"nno";}s:7:"strings";a:1:{s:8:"continue";s:9:"Hald fram";}}s:3:"oci";a:8:{s:8:"language";s:3:"oci";s:7:"version";s:6:"4.8.27";s:7:"updated";s:19:"2017-08-25 10:03:08";s:12:"english_name";s:7:"Occitan";s:11:"native_name";s:7:"Occitan";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.8.27/oci.zip";s:3:"iso";a:2:{i:1;s:2:"oc";i:2;s:3:"oci";}s:7:"strings";a:1:{s:8:"continue";s:9:"Contunhar";}}s:5:"pa_IN";a:8:{s:8:"language";s:5:"pa_IN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-16 05:19:43";s:12:"english_name";s:15:"Panjabi (India)";s:11:"native_name";s:18:"ਪੰਜਾਬੀ";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip";s:3:"iso";a:2:{i:1;s:2:"pa";i:2;s:3:"pan";}s:7:"strings";a:1:{s:8:"continue";s:25:"ਜਾਰੀ ਰੱਖੋ";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 13:11:06";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:2:"ps";a:8:{s:8:"language";s:2:"ps";s:7:"version";s:6:"4.3.35";s:7:"updated";s:19:"2015-12-02 21:41:29";s:12:"english_name";s:6:"Pashto";s:11:"native_name";s:8:"پښتو";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3.35/ps.zip";s:3:"iso";a:2:{i:1;s:2:"ps";i:2;s:3:"pus";}s:7:"strings";a:1:{s:8:"continue";s:19:"دوام ورکړه";}}s:10:"pt_PT_ao90";a:8:{s:8:"language";s:10:"pt_PT_ao90";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-10 08:01:51";s:12:"english_name";s:27:"Portuguese (Portugal, AO90)";s:11:"native_name";s:17:"Português (AO90)";s:7:"package";s:69:"https://downloads.wordpress.org/translation/core/6.8.3/pt_PT_ao90.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_AO";a:8:{s:8:"language";s:5:"pt_AO";s:7:"version";s:5:"6.4.7";s:7:"updated";s:19:"2023-08-21 12:15:00";s:12:"english_name";s:19:"Portuguese (Angola)";s:11:"native_name";s:20:"Português de Angola";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.4.7/pt_AO.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-27 23:52:28";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 11:42:39";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"rhg";a:8:{s:8:"language";s:3:"rhg";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-16 13:03:18";s:12:"english_name";s:8:"Rohingya";s:11:"native_name";s:8:"Ruáinga";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip";s:3:"iso";a:1:{i:3;s:3:"rhg";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 15:12:13";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 11:14:51";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:3:"sah";a:8:{s:8:"language";s:3:"sah";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-21 02:06:41";s:12:"english_name";s:5:"Sakha";s:11:"native_name";s:14:"Сахалыы";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip";s:3:"iso";a:2:{i:2;s:3:"sah";i:3;s:3:"sah";}s:7:"strings";a:1:{s:8:"continue";s:12:"Салҕаа";}}s:3:"snd";a:8:{s:8:"language";s:3:"snd";s:7:"version";s:6:"5.4.18";s:7:"updated";s:19:"2020-07-07 01:53:37";s:12:"english_name";s:6:"Sindhi";s:11:"native_name";s:8:"سنڌي";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/5.4.18/snd.zip";s:3:"iso";a:3:{i:1;s:2:"sd";i:2;s:3:"snd";i:3;s:3:"snd";}s:7:"strings";a:1:{s:8:"continue";s:15:"اڳتي هلو";}}s:5:"si_LK";a:8:{s:8:"language";s:5:"si_LK";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-12 06:00:52";s:12:"english_name";s:7:"Sinhala";s:11:"native_name";s:15:"සිංහල";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip";s:3:"iso";a:2:{i:1;s:2:"si";i:2;s:3:"sin";}s:7:"strings";a:1:{s:8:"continue";s:44:"දිගටම කරගෙන යන්න";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 13:17:51";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:3:"skr";a:8:{s:8:"language";s:3:"skr";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-04-24 16:58:02";s:12:"english_name";s:7:"Saraiki";s:11:"native_name";s:14:"سرائیکی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.8.3/skr.zip";s:3:"iso";a:1:{i:3;s:3:"skr";}s:7:"strings";a:1:{s:8:"continue";s:17:"جاری رکھو";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-29 11:19:02";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:8:"Nadaljuj";}}s:2:"sq";a:8:{s:8:"language";s:2:"sq";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-15 18:23:00";s:12:"english_name";s:8:"Albanian";s:11:"native_name";s:5:"Shqip";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/sq.zip";s:3:"iso";a:2:{i:1;s:2:"sq";i:2;s:3:"sqi";}s:7:"strings";a:1:{s:8:"continue";s:6:"Vazhdo";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-23 11:49:16";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-12 17:14:40";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"sw";a:8:{s:8:"language";s:2:"sw";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-08 12:32:25";s:12:"english_name";s:7:"Swahili";s:11:"native_name";s:9:"Kiswahili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/sw.zip";s:3:"iso";a:2:{i:1;s:2:"sw";i:2;s:3:"swa";}s:7:"strings";a:1:{s:8:"continue";s:7:"Endelea";}}s:3:"szl";a:8:{s:8:"language";s:3:"szl";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-09-24 19:58:14";s:12:"english_name";s:8:"Silesian";s:11:"native_name";s:17:"Ślōnskŏ gŏdka";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip";s:3:"iso";a:1:{i:3;s:3:"szl";}s:7:"strings";a:1:{s:8:"continue";s:13:"Kōntynuować";}}s:5:"ta_IN";a:8:{s:8:"language";s:5:"ta_IN";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-27 03:22:47";s:12:"english_name";s:5:"Tamil";s:11:"native_name";s:15:"தமிழ்";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip";s:3:"iso";a:2:{i:1;s:2:"ta";i:2;s:3:"tam";}s:7:"strings";a:1:{s:8:"continue";s:24:"தொடரவும்";}}s:5:"ta_LK";a:8:{s:8:"language";s:5:"ta_LK";s:7:"version";s:6:"4.2.39";s:7:"updated";s:19:"2015-12-03 01:07:44";s:12:"english_name";s:17:"Tamil (Sri Lanka)";s:11:"native_name";s:15:"தமிழ்";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.2.39/ta_LK.zip";s:3:"iso";a:2:{i:1;s:2:"ta";i:2;s:3:"tam";}s:7:"strings";a:1:{s:8:"continue";s:18:"தொடர்க";}}s:2:"te";a:8:{s:8:"language";s:2:"te";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2017-01-26 15:47:39";s:12:"english_name";s:6:"Telugu";s:11:"native_name";s:18:"తెలుగు";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/te.zip";s:3:"iso";a:2:{i:1;s:2:"te";i:2;s:3:"tel";}s:7:"strings";a:1:{s:8:"continue";s:30:"కొనసాగించు";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:6:"5.8.12";s:7:"updated";s:19:"2022-06-08 04:30:30";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/5.8.12/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:2:"tl";a:8:{s:8:"language";s:2:"tl";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-10 17:38:55";s:12:"english_name";s:7:"Tagalog";s:11:"native_name";s:7:"Tagalog";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/tl.zip";s:3:"iso";a:2:{i:1;s:2:"tl";i:2;s:3:"tgl";}s:7:"strings";a:1:{s:8:"continue";s:10:"Magpatuloy";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-23 11:58:31";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"tt_RU";a:8:{s:8:"language";s:5:"tt_RU";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-20 20:20:50";s:12:"english_name";s:5:"Tatar";s:11:"native_name";s:19:"Татар теле";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip";s:3:"iso";a:2:{i:1;s:2:"tt";i:2;s:3:"tat";}s:7:"strings";a:1:{s:8:"continue";s:17:"дәвам итү";}}s:3:"tah";a:8:{s:8:"language";s:3:"tah";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-03-06 18:39:39";s:12:"english_name";s:8:"Tahitian";s:11:"native_name";s:10:"Reo Tahiti";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip";s:3:"iso";a:3:{i:1;s:2:"ty";i:2;s:3:"tah";i:3;s:3:"tah";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"ug_CN";a:8:{s:8:"language";s:5:"ug_CN";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-10 20:06:35";s:12:"english_name";s:6:"Uighur";s:11:"native_name";s:16:"ئۇيغۇرچە";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/ug_CN.zip";s:3:"iso";a:2:{i:1;s:2:"ug";i:2;s:3:"uig";}s:7:"strings";a:1:{s:8:"continue";s:26:"داۋاملاشتۇرۇش";}}s:2:"uk";a:8:{s:8:"language";s:2:"uk";s:7:"version";s:3:"6.8";s:7:"updated";s:19:"2025-04-18 21:10:00";s:12:"english_name";s:9:"Ukrainian";s:11:"native_name";s:20:"Українська";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/6.8/uk.zip";s:3:"iso";a:2:{i:1;s:2:"uk";i:2;s:3:"ukr";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продовжити";}}s:2:"ur";a:8:{s:8:"language";s:2:"ur";s:7:"version";s:6:"5.4.18";s:7:"updated";s:19:"2020-04-09 11:17:33";s:12:"english_name";s:4:"Urdu";s:11:"native_name";s:8:"اردو";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/5.4.18/ur.zip";s:3:"iso";a:2:{i:1;s:2:"ur";i:2;s:3:"urd";}s:7:"strings";a:1:{s:8:"continue";s:19:"جاری رکھیں";}}s:5:"uz_UZ";a:8:{s:8:"language";s:5:"uz_UZ";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2021-02-28 12:02:22";s:12:"english_name";s:5:"Uzbek";s:11:"native_name";s:11:"O‘zbekcha";s:7:"package";s:67:"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip";s:3:"iso";a:2:{i:1;s:2:"uz";i:2;s:3:"uzb";}s:7:"strings";a:1:{s:8:"continue";s:11:"Davom etish";}}s:2:"vi";a:8:{s:8:"language";s:2:"vi";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-09-01 09:12:13";s:12:"english_name";s:10:"Vietnamese";s:11:"native_name";s:14:"Tiếng Việt";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.8.3/vi.zip";s:3:"iso";a:2:{i:1;s:2:"vi";i:2;s:3:"vie";}s:7:"strings";a:1:{s:8:"continue";s:12:"Tiếp tục";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-10-01 08:48:55";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:5:"6.8.3";s:7:"updated";s:19:"2025-11-13 16:26:14";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.8.3/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_HK";a:8:{s:8:"language";s:5:"zh_HK";s:7:"version";s:5:"6.2.8";s:7:"updated";s:19:"2022-07-15 15:25:03";s:12:"english_name";s:19:"Chinese (Hong Kong)";s:11:"native_name";s:12:"香港中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.2.8/zh_HK.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'off');
INSERT INTO `wp8u_options` VALUES
(1112, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(1113, 'recently_activated', 'a:0:{}', 'off'),
(1114, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1763286563', 'off'),
(1115, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:"stdClass":100:{s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";i:7678;}s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";i:4937;}s:4:"post";a:3:{s:4:"name";s:4:"post";s:4:"slug";s:4:"post";s:5:"count";i:2802;}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";i:2775;}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";i:2151;}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";i:2131;}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";i:2102;}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";i:1967;}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";i:1689;}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";i:1658;}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";i:1622;}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";i:1560;}s:8:"facebook";a:3:{s:4:"name";s:8:"facebook";s:4:"slug";s:8:"facebook";s:5:"count";i:1516;}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";i:1515;}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";i:1504;}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";i:1363;}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";i:1356;}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";i:1317;}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";i:1279;}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";i:1179;}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";i:1161;}s:5:"block";a:3:{s:4:"name";s:5:"block";s:4:"slug";s:5:"block";s:5:"count";i:1080;}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";i:1073;}s:7:"payment";a:3:{s:4:"name";s:7:"payment";s:4:"slug";s:7:"payment";s:5:"count";i:1073;}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";i:1066;}s:9:"gutenberg";a:3:{s:4:"name";s:9:"gutenberg";s:4:"slug";s:9:"gutenberg";s:5:"count";i:1057;}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";i:1050;}s:9:"elementor";a:3:{s:4:"name";s:9:"elementor";s:4:"slug";s:9:"elementor";s:5:"count";i:1022;}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";i:1009;}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";i:979;}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";i:953;}s:15:"payment-gateway";a:3:{s:4:"name";s:15:"payment gateway";s:4:"slug";s:15:"payment-gateway";s:5:"count";i:951;}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";i:935;}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";i:928;}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";i:914;}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";i:897;}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";i:866;}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";i:819;}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";i:786;}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";i:786;}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";i:773;}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";i:770;}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";i:764;}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";i:757;}s:2:"ai";a:3:{s:4:"name";s:2:"AI";s:4:"slug";s:2:"ai";s:5:"count";i:739;}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";i:721;}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";i:713;}s:11:"performance";a:3:{s:4:"name";s:11:"performance";s:4:"slug";s:11:"performance";s:5:"count";i:711;}s:4:"ajax";a:3:{s:4:"name";s:4:"ajax";s:4:"slug";s:4:"ajax";s:5:"count";i:707;}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";i:691;}s:4:"chat";a:3:{s:4:"name";s:4:"chat";s:4:"slug";s:4:"chat";s:5:"count";i:691;}s:8:"shipping";a:3:{s:4:"name";s:8:"shipping";s:4:"slug";s:8:"shipping";s:5:"count";i:689;}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";i:676;}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";i:665;}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";i:663;}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";i:649;}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";i:647;}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";i:643;}s:3:"css";a:3:{s:4:"name";s:3:"css";s:4:"slug";s:3:"css";s:5:"count";i:638;}s:14:"contact-form-7";a:3:{s:4:"name";s:14:"contact form 7";s:4:"slug";s:14:"contact-form-7";s:5:"count";i:636;}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";i:625;}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";i:616;}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";i:616;}s:5:"forms";a:3:{s:4:"name";s:5:"forms";s:4:"slug";s:5:"forms";s:5:"count";i:615;}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";i:612;}s:5:"share";a:3:{s:4:"name";s:5:"share";s:4:"slug";s:5:"share";s:5:"count";i:611;}s:6:"blocks";a:3:{s:4:"name";s:6:"blocks";s:4:"slug";s:6:"blocks";s:5:"count";i:607;}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";i:593;}s:5:"popup";a:3:{s:4:"name";s:5:"popup";s:4:"slug";s:5:"popup";s:5:"count";i:584;}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";i:581;}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";i:579;}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";i:579;}s:8:"payments";a:3:{s:4:"name";s:8:"payments";s:4:"slug";s:8:"payments";s:5:"count";i:577;}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";i:575;}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";i:571;}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";i:558;}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";i:539;}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";i:534;}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";i:531;}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";i:527;}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";i:525;}s:8:"checkout";a:3:{s:4:"name";s:8:"checkout";s:4:"slug";s:8:"checkout";s:5:"count";i:522;}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";i:511;}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";i:509;}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";i:505;}s:7:"gateway";a:3:{s:4:"name";s:7:"gateway";s:4:"slug";s:7:"gateway";s:5:"count";i:483;}s:8:"redirect";a:3:{s:4:"name";s:8:"redirect";s:4:"slug";s:8:"redirect";s:5:"count";i:480;}s:6:"import";a:3:{s:4:"name";s:6:"import";s:4:"slug";s:6:"import";s:5:"count";i:477;}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";i:474;}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";i:472;}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";i:466;}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";i:460;}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";i:458;}s:5:"cache";a:3:{s:4:"name";s:5:"cache";s:4:"slug";s:5:"cache";s:5:"count";i:453;}s:4:"news";a:3:{s:4:"name";s:4:"news";s:4:"slug";s:4:"news";s:5:"count";i:442;}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";i:430;}s:4:"code";a:3:{s:4:"name";s:4:"code";s:4:"slug";s:4:"code";s:5:"count";i:427;}s:7:"chatbot";a:3:{s:4:"name";s:7:"chatbot";s:4:"slug";s:7:"chatbot";s:5:"count";i:425;}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";i:423;}s:8:"products";a:3:{s:4:"name";s:8:"products";s:4:"slug";s:8:"products";s:5:"count";i:422;}}', 'off'),
(1117, '_site_transient_timeout_theme_roots', '1763277605', 'off'),
(1118, '_site_transient_theme_roots', 'a:4:{s:5:"astra";s:7:"/themes";s:16:"twentytwentyfive";s:7:"/themes";s:16:"twentytwentyfour";s:7:"/themes";s:17:"twentytwentythree";s:7:"/themes";}', 'off'),
(1119, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1763275812;s:8:"response";a:1:{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:3:"6.9";s:12:"requires_php";s:3:"7.2";s:16:"requires_plugins";a:0:{}}}s:12:"translations";a:0:{}s:9:"no_update";a:17:{s:45:"wp-live-chat-support/wp-live-chat-support.php";O:8:"stdClass":10:{s:2:"id";s:34:"w.org/plugins/wp-live-chat-support";s:4:"slug";s:20:"wp-live-chat-support";s:6:"plugin";s:45:"wp-live-chat-support/wp-live-chat-support.php";s:11:"new_version";s:7:"10.0.17";s:3:"url";s:51:"https://wordpress.org/plugins/wp-live-chat-support/";s:7:"package";s:71:"https://downloads.wordpress.org/plugin/wp-live-chat-support.10.0.17.zip";s:5:"icons";a:2:{s:2:"2x";s:73:"https://ps.w.org/wp-live-chat-support/assets/icon-256x256.png?rev=2405258";s:2:"1x";s:73:"https://ps.w.org/wp-live-chat-support/assets/icon-128x128.png?rev=2405258";}s:7:"banners";a:2:{s:2:"2x";s:76:"https://ps.w.org/wp-live-chat-support/assets/banner-1544x500.jpg?rev=3266318";s:2:"1x";s:75:"https://ps.w.org/wp-live-chat-support/assets/banner-772x250.jpg?rev=3266327";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.3";}s:21:"backuply/backuply.php";O:8:"stdClass":10:{s:2:"id";s:22:"w.org/plugins/backuply";s:4:"slug";s:8:"backuply";s:6:"plugin";s:21:"backuply/backuply.php";s:11:"new_version";s:5:"1.5.1";s:3:"url";s:39:"https://wordpress.org/plugins/backuply/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/backuply.1.5.1.zip";s:5:"icons";a:1:{s:2:"1x";s:61:"https://ps.w.org/backuply/assets/icon-128x128.png?rev=2760139";}s:7:"banners";a:2:{s:2:"2x";s:64:"https://ps.w.org/backuply/assets/banner-1544x500.png?rev=2760332";s:2:"1x";s:63:"https://ps.w.org/backuply/assets/banner-772x250.png?rev=2760332";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.7";}s:27:"cookieadmin/cookieadmin.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/cookieadmin";s:4:"slug";s:11:"cookieadmin";s:6:"plugin";s:27:"cookieadmin/cookieadmin.php";s:11:"new_version";s:5:"1.1.3";s:3:"url";s:42:"https://wordpress.org/plugins/cookieadmin/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/cookieadmin.1.1.3.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/cookieadmin/assets/icon-256x256.png?rev=3328221";s:2:"1x";s:64:"https://ps.w.org/cookieadmin/assets/icon-128x128.png?rev=3328221";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/cookieadmin/assets/banner-1544x500.png?rev=3328221";s:2:"1x";s:66:"https://ps.w.org/cookieadmin/assets/banner-772x250.png?rev=3328221";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.4";}s:47:"file-manager-advanced/file_manager_advanced.php";O:8:"stdClass":10:{s:2:"id";s:35:"w.org/plugins/file-manager-advanced";s:4:"slug";s:21:"file-manager-advanced";s:6:"plugin";s:47:"file-manager-advanced/file_manager_advanced.php";s:11:"new_version";s:5:"5.4.5";s:3:"url";s:52:"https://wordpress.org/plugins/file-manager-advanced/";s:7:"package";s:70:"https://downloads.wordpress.org/plugin/file-manager-advanced.5.4.5.zip";s:5:"icons";a:1:{s:2:"1x";s:74:"https://ps.w.org/file-manager-advanced/assets/icon-128x128.png?rev=3305504";}s:7:"banners";a:2:{s:2:"2x";s:77:"https://ps.w.org/file-manager-advanced/assets/banner-1544x500.png?rev=3305504";s:2:"1x";s:76:"https://ps.w.org/file-manager-advanced/assets/banner-772x250.png?rev=3305504";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.0";}s:17:"gosmtp/gosmtp.php";O:8:"stdClass":10:{s:2:"id";s:20:"w.org/plugins/gosmtp";s:4:"slug";s:6:"gosmtp";s:6:"plugin";s:17:"gosmtp/gosmtp.php";s:11:"new_version";s:5:"1.1.5";s:3:"url";s:37:"https://wordpress.org/plugins/gosmtp/";s:7:"package";s:55:"https://downloads.wordpress.org/plugin/gosmtp.1.1.5.zip";s:5:"icons";a:2:{s:2:"2x";s:59:"https://ps.w.org/gosmtp/assets/icon-256x256.png?rev=2869163";s:2:"1x";s:59:"https://ps.w.org/gosmtp/assets/icon-128x128.png?rev=2869163";}s:7:"banners";a:2:{s:2:"2x";s:62:"https://ps.w.org/gosmtp/assets/banner-1544x500.png?rev=2868206";s:2:"1x";s:61:"https://ps.w.org/gosmtp/assets/banner-772x250.png?rev=2868206";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.5";}s:9:"hello.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/hello-dolly";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:5:"1.7.2";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855";s:2:"1x";s:64:"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582";s:2:"1x";s:66:"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.6";}s:17:"backup/backup.php";O:8:"stdClass":10:{s:2:"id";s:20:"w.org/plugins/backup";s:4:"slug";s:6:"backup";s:6:"plugin";s:17:"backup/backup.php";s:11:"new_version";s:9:"3.1.14.17";s:3:"url";s:37:"https://wordpress.org/plugins/backup/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/backup.3.1.14.17.zip";s:5:"icons";a:1:{s:2:"1x";s:59:"https://ps.w.org/backup/assets/icon-128x128.png?rev=3287187";}s:7:"banners";a:2:{s:2:"2x";s:62:"https://ps.w.org/backup/assets/banner-1544x500.png?rev=3305702";s:2:"1x";s:61:"https://ps.w.org/backup/assets/banner-772x250.png?rev=3305702";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.0";}s:23:"latepoint/latepoint.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/latepoint";s:4:"slug";s:9:"latepoint";s:6:"plugin";s:23:"latepoint/latepoint.php";s:11:"new_version";s:5:"5.2.4";s:3:"url";s:40:"https://wordpress.org/plugins/latepoint/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/latepoint.5.2.4.zip";s:5:"icons";a:2:{s:2:"1x";s:54:"https://ps.w.org/latepoint/assets/icon.svg?rev=3230896";s:3:"svg";s:54:"https://ps.w.org/latepoint/assets/icon.svg?rev=3230896";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/latepoint/assets/banner-1544x500.png?rev=3230896";s:2:"1x";s:64:"https://ps.w.org/latepoint/assets/banner-772x250.png?rev=3230896";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.5";}s:23:"loginizer/loginizer.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/loginizer";s:4:"slug";s:9:"loginizer";s:6:"plugin";s:23:"loginizer/loginizer.php";s:11:"new_version";s:5:"2.0.3";s:3:"url";s:40:"https://wordpress.org/plugins/loginizer/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093";s:2:"1x";s:62:"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/loginizer/assets/banner-1544x500.png?rev=3131676";s:2:"1x";s:64:"https://ps.w.org/loginizer/assets/banner-772x250.png?rev=3131676";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"3.0";}s:29:"suretriggers/suretriggers.php";O:8:"stdClass":10:{s:2:"id";s:26:"w.org/plugins/suretriggers";s:4:"slug";s:12:"suretriggers";s:6:"plugin";s:29:"suretriggers/suretriggers.php";s:11:"new_version";s:6:"1.1.13";s:3:"url";s:43:"https://wordpress.org/plugins/suretriggers/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/suretriggers.1.1.13.zip";s:5:"icons";a:2:{s:2:"2x";s:65:"https://ps.w.org/suretriggers/assets/icon-256x256.png?rev=3267768";s:2:"1x";s:65:"https://ps.w.org/suretriggers/assets/icon-128x128.png?rev=3267768";}s:7:"banners";a:2:{s:2:"2x";s:68:"https://ps.w.org/suretriggers/assets/banner-1544x500.png?rev=3322221";s:2:"1x";s:67:"https://ps.w.org/suretriggers/assets/banner-772x250.png?rev=3322221";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.4";}s:23:"pagelayer/pagelayer.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/pagelayer";s:4:"slug";s:9:"pagelayer";s:6:"plugin";s:23:"pagelayer/pagelayer.php";s:11:"new_version";s:5:"2.0.6";s:3:"url";s:40:"https://wordpress.org/plugins/pagelayer/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/pagelayer.2.0.6.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/pagelayer/assets/icon-256x256.png?rev=2064937";s:2:"1x";s:62:"https://ps.w.org/pagelayer/assets/icon-128x128.png?rev=2064937";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/pagelayer/assets/banner-1544x500.png?rev=2668020";s:2:"1x";s:64:"https://ps.w.org/pagelayer/assets/banner-772x250.png?rev=2668020";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.7";}s:19:"siteseo/siteseo.php";O:8:"stdClass":10:{s:2:"id";s:21:"w.org/plugins/siteseo";s:4:"slug";s:7:"siteseo";s:6:"plugin";s:19:"siteseo/siteseo.php";s:11:"new_version";s:5:"1.3.2";s:3:"url";s:38:"https://wordpress.org/plugins/siteseo/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/siteseo.1.3.2.zip";s:5:"icons";a:2:{s:2:"2x";s:60:"https://ps.w.org/siteseo/assets/icon-256x256.png?rev=3015592";s:2:"1x";s:60:"https://ps.w.org/siteseo/assets/icon-128x128.png?rev=3015592";}s:7:"banners";a:2:{s:2:"2x";s:63:"https://ps.w.org/siteseo/assets/banner-1544x500.jpg?rev=3016144";s:2:"1x";s:62:"https://ps.w.org/siteseo/assets/banner-772x250.jpg?rev=3016144";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.0";}s:63:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php";O:8:"stdClass":10:{s:2:"id";s:43:"w.org/plugins/ultimate-addons-for-gutenberg";s:4:"slug";s:29:"ultimate-addons-for-gutenberg";s:6:"plugin";s:63:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php";s:11:"new_version";s:7:"2.19.16";s:3:"url";s:60:"https://wordpress.org/plugins/ultimate-addons-for-gutenberg/";s:7:"package";s:80:"https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.2.19.16.zip";s:5:"icons";a:2:{s:2:"2x";s:82:"https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-256x256.gif?rev=3240412";s:2:"1x";s:82:"https://ps.w.org/ultimate-addons-for-gutenberg/assets/icon-128x128.gif?rev=3240412";}s:7:"banners";a:2:{s:2:"2x";s:85:"https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-1544x500.jpg?rev=3166947";s:2:"1x";s:84:"https://ps.w.org/ultimate-addons-for-gutenberg/assets/banner-772x250.jpg?rev=3166947";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.6";}s:27:"speedycache/speedycache.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/speedycache";s:4:"slug";s:11:"speedycache";s:6:"plugin";s:27:"speedycache/speedycache.php";s:11:"new_version";s:5:"1.3.6";s:3:"url";s:42:"https://wordpress.org/plugins/speedycache/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/speedycache.1.3.6.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/speedycache/assets/icon-256x256.png?rev=3109188";s:2:"1x";s:64:"https://ps.w.org/speedycache/assets/icon-128x128.png?rev=3109188";}s:7:"banners";a:1:{s:2:"1x";s:66:"https://ps.w.org/speedycache/assets/banner-772x250.png?rev=2858418";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.7";}s:27:"astra-sites/astra-sites.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/astra-sites";s:4:"slug";s:11:"astra-sites";s:6:"plugin";s:27:"astra-sites/astra-sites.php";s:11:"new_version";s:6:"4.4.42";s:3:"url";s:42:"https://wordpress.org/plugins/astra-sites/";s:7:"package";s:61:"https://downloads.wordpress.org/plugin/astra-sites.4.4.42.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/astra-sites/assets/icon-256x256.gif?rev=3060571";s:2:"1x";s:64:"https://ps.w.org/astra-sites/assets/icon-256x256.gif?rev=3060571";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/astra-sites/assets/banner-1544x500.jpg?rev=3055258";s:2:"1x";s:66:"https://ps.w.org/astra-sites/assets/banner-772x250.jpg?rev=3055258";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.6";}s:23:"sureforms/sureforms.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/sureforms";s:4:"slug";s:9:"sureforms";s:6:"plugin";s:23:"sureforms/sureforms.php";s:11:"new_version";s:6:"1.13.2";s:3:"url";s:40:"https://wordpress.org/plugins/sureforms/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/sureforms.1.13.2.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/sureforms/assets/icon-256x256.gif?rev=3177692";s:2:"1x";s:62:"https://ps.w.org/sureforms/assets/icon-128x128.gif?rev=3177692";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/sureforms/assets/banner-1544x500.png?rev=3178230";s:2:"1x";s:64:"https://ps.w.org/sureforms/assets/banner-772x250.png?rev=3178230";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.4";}s:21:"surerank/surerank.php";O:8:"stdClass":10:{s:2:"id";s:22:"w.org/plugins/surerank";s:4:"slug";s:8:"surerank";s:6:"plugin";s:21:"surerank/surerank.php";s:11:"new_version";s:5:"1.4.3";s:3:"url";s:39:"https://wordpress.org/plugins/surerank/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/surerank.1.4.3.zip";s:5:"icons";a:2:{s:2:"2x";s:61:"https://ps.w.org/surerank/assets/icon-256x256.jpg?rev=3320934";s:2:"1x";s:61:"https://ps.w.org/surerank/assets/icon-256x256.jpg?rev=3320934";}s:7:"banners";a:2:{s:2:"2x";s:64:"https://ps.w.org/surerank/assets/banner-1544x500.jpg?rev=3320934";s:2:"1x";s:63:"https://ps.w.org/surerank/assets/banner-772x250.jpg?rev=3320934";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.7";}}s:7:"checked";a:18:{s:45:"wp-live-chat-support/wp-live-chat-support.php";s:7:"10.0.17";s:19:"akismet/akismet.php";s:3:"5.5";s:21:"backuply/backuply.php";s:5:"1.5.1";s:27:"cookieadmin/cookieadmin.php";s:5:"1.1.3";s:47:"file-manager-advanced/file_manager_advanced.php";s:5:"5.4.5";s:17:"gosmtp/gosmtp.php";s:5:"1.1.5";s:9:"hello.php";s:5:"1.7.2";s:17:"backup/backup.php";s:9:"3.1.14.17";s:23:"latepoint/latepoint.php";s:5:"5.2.4";s:23:"loginizer/loginizer.php";s:5:"2.0.3";s:29:"suretriggers/suretriggers.php";s:6:"1.1.13";s:23:"pagelayer/pagelayer.php";s:5:"2.0.6";s:19:"siteseo/siteseo.php";s:5:"1.3.2";s:63:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php";s:7:"2.19.16";s:27:"speedycache/speedycache.php";s:5:"1.3.6";s:27:"astra-sites/astra-sites.php";s:6:"4.4.42";s:23:"sureforms/sureforms.php";s:6:"1.13.2";s:21:"surerank/surerank.php";s:5:"1.4.3";}}', 'off'),
(1121, '_site_transient_timeout_wp_theme_files_patterns-7ca682f903979c5cac4857512078449c', '1763277620', 'off'),
(1122, '_site_transient_wp_theme_files_patterns-7ca682f903979c5cac4857512078449c', 'a:2:{s:7:"version";s:7:"4.11.15";s:8:"patterns";a:0:{}}', 'off');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_postmeta`
--
CREATE TABLE `wp8u_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_postmeta`
--
INSERT INTO `wp8u_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 7, '_wp_attached_file', '2025/11/320612318_3296170487264397_8587241604754344168_n.jpg'),
(4, 7, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:958;s:6:"height";i:960;s:4:"file";s:60:"2025/11/320612318_3296170487264397_8587241604754344168_n.jpg";s:8:"filesize";i:28304;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:60:"320612318_3296170487264397_8587241604754344168_n-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7194;}s:9:"thumbnail";a:5:{s:4:"file";s:60:"320612318_3296170487264397_8587241604754344168_n-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:3385;}s:12:"medium_large";a:5:{s:4:"file";s:60:"320612318_3296170487264397_8587241604754344168_n-768x770.jpg";s:5:"width";i:768;s:6:"height";i:770;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:23259;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5, 8, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"The page does not contain any subheadings.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(6, 8, 'surerank_seo_checks_last_updated', '1763191521'),
(7, 9, '_wp_attached_file', '2025/11/pexels-photo-1643383.jpeg'),
(8, 9, '_wp_attachment_image_alt', 'Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.'),
(9, 9, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:843;s:4:"file";s:33:"2025/11/pexels-photo-1643383.jpeg";s:8:"filesize";i:118833;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1643383-300x198.jpeg";s:5:"width";i:300;s:6:"height";i:198;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:13339;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1643383-1024x674.jpeg";s:5:"width";i:1024;s:6:"height";i:674;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:96770;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1643383-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6041;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1643383-768x506.jpeg";s:5:"width";i:768;s:6:"height";i:506;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:60860;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10, 9, '_source_url', 'https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?w=1280'),
(11, 9, 'astra-images', '1643383'),
(12, 9, '_astra_sites_imported_post', '1'),
(13, 10, '_wp_attached_file', '2025/11/pexels-photo-1457842.jpeg'),
(14, 10, '_wp_attachment_image_alt', 'Stylish living room with a view of Table Mountain, blending modern design with natural beauty.'),
(15, 10, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:777;s:4:"file";s:33:"2025/11/pexels-photo-1457842.jpeg";s:8:"filesize";i:92286;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1457842-300x182.jpeg";s:5:"width";i:300;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11035;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1457842-1024x622.jpeg";s:5:"width";i:1024;s:6:"height";i:622;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:77710;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1457842-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5180;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1457842-768x466.jpeg";s:5:"width";i:768;s:6:"height";i:466;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:49391;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(16, 10, '_source_url', 'https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?w=1280'),
(17, 10, 'astra-images', '1457842'),
(18, 10, '_astra_sites_imported_post', '1'),
(19, 11, '_wp_attached_file', '2025/11/pexels-photo-1571460.jpeg'),
(20, 11, '_wp_attachment_image_alt', 'Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.'),
(21, 11, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:823;s:4:"file";s:33:"2025/11/pexels-photo-1571460.jpeg";s:8:"filesize";i:119312;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1571460-300x193.jpeg";s:5:"width";i:300;s:6:"height";i:193;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:12555;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1571460-1024x658.jpeg";s:5:"width";i:1024;s:6:"height";i:658;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:97293;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1571460-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5688;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1571460-768x494.jpeg";s:5:"width";i:768;s:6:"height";i:494;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:59825;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(22, 11, '_source_url', 'https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?w=1280'),
(23, 11, 'astra-images', '1571460'),
(24, 11, '_astra_sites_imported_post', '1'),
(25, 12, '_wp_attached_file', '2025/11/pexels-photo-1571453.jpeg'),
(26, 12, '_wp_attachment_image_alt', 'Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.'),
(27, 12, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:855;s:4:"file";s:33:"2025/11/pexels-photo-1571453.jpeg";s:8:"filesize";i:133044;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1571453-300x200.jpeg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:13468;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1571453-1024x684.jpeg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:107835;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1571453-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6078;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1571453-768x513.jpeg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:67076;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(28, 12, '_source_url', 'https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?w=1280'),
(29, 12, 'astra-images', '1571453'),
(30, 12, '_astra_sites_imported_post', '1'),
(31, 13, '_wp_attached_file', '2025/11/pexels-photo-271816.jpeg'),
(32, 13, '_wp_attachment_image_alt', 'A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.'),
(33, 13, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:32:"2025/11/pexels-photo-271816.jpeg";s:8:"filesize";i:102369;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:32:"pexels-photo-271816-300x169.jpeg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11761;}s:5:"large";a:5:{s:4:"file";s:33:"pexels-photo-271816-1024x576.jpeg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:81324;}s:9:"thumbnail";a:5:{s:4:"file";s:32:"pexels-photo-271816-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6143;}s:12:"medium_large";a:5:{s:4:"file";s:32:"pexels-photo-271816-768x432.jpeg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:51939;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(34, 13, '_source_url', 'https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?w=1280'),
(35, 13, 'astra-images', '271816'),
(36, 13, '_astra_sites_imported_post', '1'),
(37, 14, '_wp_attached_file', '2025/11/pexels-photo-276724.jpeg'),
(38, 14, '_wp_attachment_image_alt', 'Inviting living room interior featuring modern design with cozy furnishings and stylish decor.'),
(39, 14, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:32:"2025/11/pexels-photo-276724.jpeg";s:8:"filesize";i:143509;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:32:"pexels-photo-276724-300x169.jpeg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:15084;}s:5:"large";a:5:{s:4:"file";s:33:"pexels-photo-276724-1024x576.jpeg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:116354;}s:9:"thumbnail";a:5:{s:4:"file";s:32:"pexels-photo-276724-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7350;}s:12:"medium_large";a:5:{s:4:"file";s:32:"pexels-photo-276724-768x432.jpeg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:72475;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(40, 14, '_source_url', 'https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?w=1280'),
(41, 14, 'astra-images', '276724'),
(42, 14, '_astra_sites_imported_post', '1'),
(43, 15, '_wp_attached_file', '2025/11/pexels-photo-827518.jpeg'),
(44, 15, '_wp_attachment_image_alt', 'Inviting café corner with lush plants and cozy seating, perfect for relaxation.'),
(45, 15, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:1050;s:4:"file";s:32:"2025/11/pexels-photo-827518.jpeg";s:8:"filesize";i:159205;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:32:"pexels-photo-827518-200x300.jpeg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:23377;}s:5:"large";a:5:{s:4:"file";s:33:"pexels-photo-827518-683x1024.jpeg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:170089;}s:9:"thumbnail";a:5:{s:4:"file";s:32:"pexels-photo-827518-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:10895;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(46, 15, '_source_url', 'https://images.pexels.com/photos/827518/pexels-photo-827518.jpeg?w=700'),
(47, 15, 'astra-images', '827518'),
(48, 15, '_astra_sites_imported_post', '1'),
(49, 16, '_wp_attached_file', '2025/11/pexels-photo-1129413.jpeg'),
(50, 16, '_wp_attachment_image_alt', 'Cozy indoor space with rustic decor, warm lighting, and natural elements.'),
(51, 16, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:1050;s:4:"file";s:33:"2025/11/pexels-photo-1129413.jpeg";s:8:"filesize";i:85664;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1129413-200x300.jpeg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:13467;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1129413-683x1024.jpeg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:90975;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1129413-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6352;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(52, 16, '_source_url', 'https://images.pexels.com/photos/1129413/pexels-photo-1129413.jpeg?w=700'),
(53, 16, 'astra-images', '1129413'),
(54, 16, '_astra_sites_imported_post', '1'),
(55, 17, '_wp_attached_file', '2025/11/pexels-photo-1374125.jpeg'),
(56, 17, '_wp_attachment_image_alt', 'A stylish and cozy bedroom featuring green walls, botanical prints, and soft lighting for a contemporary feel.'),
(57, 17, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:900;s:4:"file";s:33:"2025/11/pexels-photo-1374125.jpeg";s:8:"filesize";i:72270;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1374125-233x300.jpeg";s:5:"width";i:233;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:15990;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1374125-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7014;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(58, 17, '_source_url', 'https://images.pexels.com/photos/1374125/pexels-photo-1374125.jpeg?w=700'),
(59, 17, 'astra-images', '1374125'),
(60, 17, '_astra_sites_imported_post', '1'),
(61, 18, '_wp_attached_file', '2025/11/pexels-photo-4352247.jpeg'),
(62, 18, '_wp_attachment_image_alt', 'A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor.'),
(63, 18, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:1050;s:4:"file";s:33:"2025/11/pexels-photo-4352247.jpeg";s:8:"filesize";i:46302;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-4352247-200x300.jpeg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7116;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-4352247-683x1024.jpeg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:53992;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-4352247-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:3692;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(64, 18, '_source_url', 'https://images.pexels.com/photos/4352247/pexels-photo-4352247.jpeg?w=700'),
(65, 18, 'astra-images', '4352247'),
(66, 18, '_astra_sites_imported_post', '1'),
(67, 19, '_wp_attached_file', '2025/11/pexels-photo-447592.jpeg'),
(68, 19, '_wp_attachment_image_alt', 'Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration.'),
(69, 19, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:875;s:4:"file";s:32:"2025/11/pexels-photo-447592.jpeg";s:8:"filesize";i:63138;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:32:"pexels-photo-447592-240x300.jpeg";s:5:"width";i:240;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11771;}s:9:"thumbnail";a:5:{s:4:"file";s:32:"pexels-photo-447592-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4775;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(70, 19, '_source_url', 'https://images.pexels.com/photos/447592/pexels-photo-447592.jpeg?w=700'),
(71, 19, 'astra-images', '447592'),
(72, 19, '_astra_sites_imported_post', '1'),
(73, 20, '_wp_attached_file', '2025/11/pexels-photo-1648771.jpeg'),
(74, 20, '_wp_attachment_image_alt', 'Elegant modern interior living room with fireplace and stylish decor.'),
(75, 20, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:870;s:4:"file";s:33:"2025/11/pexels-photo-1648771.jpeg";s:8:"filesize";i:113521;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1648771-300x204.jpeg";s:5:"width";i:300;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:13364;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1648771-1024x696.jpeg";s:5:"width";i:1024;s:6:"height";i:696;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:99430;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1648771-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5772;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1648771-768x522.jpeg";s:5:"width";i:768;s:6:"height";i:522;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:62573;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(76, 20, '_source_url', 'https://images.pexels.com/photos/1648771/pexels-photo-1648771.jpeg?w=1280'),
(77, 20, 'astra-images', '1648771'),
(78, 20, '_astra_sites_imported_post', '1'),
(79, 21, '_wp_attached_file', '2025/11/pexels-photo-1571459.jpeg'),
(80, 21, '_wp_attachment_image_alt', 'Spacious modern living room featuring stairs, a TV, and sleek furniture design.'),
(81, 21, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:835;s:4:"file";s:33:"2025/11/pexels-photo-1571459.jpeg";s:8:"filesize";i:91575;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1571459-300x196.jpeg";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:10283;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1571459-1024x668.jpeg";s:5:"width";i:1024;s:6:"height";i:668;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:77013;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1571459-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4783;}s:12:"medium_large";a:5:{s:4:"file";s:33:"pexels-photo-1571459-768x501.jpeg";s:5:"width";i:768;s:6:"height";i:501;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:48132;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(82, 21, '_source_url', 'https://images.pexels.com/photos/1571459/pexels-photo-1571459.jpeg?w=1280'),
(83, 21, 'astra-images', '1571459'),
(84, 21, '_astra_sites_imported_post', '1'),
(85, 22, '_wp_attached_file', '2025/11/pexels-photo-1457844.jpeg'),
(86, 22, '_wp_attachment_image_alt', 'Sleek contemporary hallway featuring a stunning glass chandelier and minimalist design.'),
(87, 22, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:1050;s:4:"file";s:33:"2025/11/pexels-photo-1457844.jpeg";s:8:"filesize";i:41963;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-1457844-200x300.jpeg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7717;}s:5:"large";a:5:{s:4:"file";s:34:"pexels-photo-1457844-683x1024.jpeg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:48923;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-1457844-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4108;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(88, 22, '_source_url', 'https://images.pexels.com/photos/1457844/pexels-photo-1457844.jpeg?w=700'),
(89, 22, 'astra-images', '1457844'),
(90, 22, '_astra_sites_imported_post', '1'),
(91, 23, '_wp_attached_file', '2025/11/pexels-photo-245208.jpeg'),
(92, 23, '_wp_attachment_image_alt', 'Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements.'),
(93, 23, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:924;s:4:"file";s:32:"2025/11/pexels-photo-245208.jpeg";s:8:"filesize";i:120433;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:32:"pexels-photo-245208-300x217.jpeg";s:5:"width";i:300;s:6:"height";i:217;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:14510;}s:5:"large";a:5:{s:4:"file";s:33:"pexels-photo-245208-1024x739.jpeg";s:5:"width";i:1024;s:6:"height";i:739;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:98204;}s:9:"thumbnail";a:5:{s:4:"file";s:32:"pexels-photo-245208-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6811;}s:12:"medium_large";a:5:{s:4:"file";s:32:"pexels-photo-245208-768x554.jpeg";s:5:"width";i:768;s:6:"height";i:554;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:62578;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(94, 23, '_source_url', 'https://images.pexels.com/photos/245208/pexels-photo-245208.jpeg?w=1280'),
(95, 23, 'astra-images', '245208'),
(96, 23, '_astra_sites_imported_post', '1'),
(97, 24, '_wp_attached_file', '2025/11/pexels-photo-2067638.jpeg'),
(98, 24, '_wp_attachment_image_alt', 'Stylish café interior featuring modern décor, green walls, plants, and comfortable seating.'),
(99, 24, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:700;s:6:"height";i:933;s:4:"file";s:33:"2025/11/pexels-photo-2067638.jpeg";s:8:"filesize";i:115541;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:33:"pexels-photo-2067638-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:21128;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"pexels-photo-2067638-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:9407;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(100, 24, '_source_url', 'https://images.pexels.com/photos/2067638/pexels-photo-2067638.jpeg?w=700'),
(101, 24, 'astra-images', '2067638'),
(102, 24, '_astra_sites_imported_post', '1'),
(225, 43, '_wp_attached_file', '2024/02/value.jpg'),
(226, 43, '_wp_attachment_image_alt', 'value'),
(227, 43, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1280;s:6:"height";i:600;s:4:"file";s:17:"2024/02/value.jpg";s:8:"filesize";i:247128;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:17:"value-300x141.jpg";s:5:"width";i:300;s:6:"height";i:141;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11508;}s:5:"large";a:5:{s:4:"file";s:18:"value-1024x480.jpg";s:5:"width";i:1024;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:96268;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"value-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7656;}s:12:"medium_large";a:5:{s:4:"file";s:17:"value-768x360.jpg";s:5:"width";i:768;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:59267;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(228, 43, '_wxr_import_user_slug', 'emmanuelm'),
(229, 43, '_astra_sites_imported_post', '1'),
(230, 43, '_astra_sites_enable_for_batch', '1'),
(231, 43, '_astra_sites_image_hash', '1e43c50f9d5ac7d7cdc8d6b89985787630995dd7'),
(232, 43, '_elementor_source_image_hash', '1e43c50f9d5ac7d7cdc8d6b89985787630995dd7'),
(233, 221, '_wp_attached_file', '2024/02/testimonial-skip-01.jpg'),
(234, 221, '_wp_attachment_image_alt', 'testimonial skip 01'),
(235, 221, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:31:"2024/02/testimonial-skip-01.jpg";s:8:"filesize";i:19686;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:{}}}'),
(236, 221, '_wxr_import_user_slug', 'emmanuelm'),
(237, 221, '_astra_sites_imported_post', '1'),
(238, 221, '_astra_sites_enable_for_batch', '1'),
(239, 221, '_astra_sites_image_hash', '13d2b7a20f792723ccd6ad96147612701b0388b5'),
(240, 221, '_elementor_source_image_hash', '13d2b7a20f792723ccd6ad96147612701b0388b5'),
(241, 222, '_wp_attached_file', '2024/02/testimonial-skip-02.jpg'),
(242, 222, '_wp_attachment_image_alt', 'testimonial skip 02'),
(243, 222, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:31:"2024/02/testimonial-skip-02.jpg";s:8:"filesize";i:16868;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:{}}}'),
(244, 222, '_wxr_import_user_slug', 'emmanuelm'),
(245, 222, '_astra_sites_imported_post', '1'),
(246, 222, '_astra_sites_enable_for_batch', '1'),
(247, 222, '_astra_sites_image_hash', '6496c10e1a233cb2b2bc58bf633be5604e535667'),
(248, 222, '_elementor_source_image_hash', '6496c10e1a233cb2b2bc58bf633be5604e535667'),
(249, 223, '_wp_attached_file', '2024/02/testimonial-skip-03.jpg'),
(250, 223, '_wp_attachment_image_alt', 'testimonial skip 03'),
(251, 223, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:31:"2024/02/testimonial-skip-03.jpg";s:8:"filesize";i:13804;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:{}}}'),
(252, 223, '_wxr_import_user_slug', 'emmanuelm'),
(253, 223, '_astra_sites_imported_post', '1'),
(254, 223, '_astra_sites_enable_for_batch', '1'),
(255, 223, '_astra_sites_image_hash', '12673e03f29772acc7fbf81f565287a83b891235'),
(256, 223, '_elementor_source_image_hash', '12673e03f29772acc7fbf81f565287a83b891235'),
(257, 224, '_wp_attached_file', '2024/02/testimonial-skip-04.jpg'),
(258, 224, '_wp_attachment_image_alt', 'testimonial skip 04'),
(259, 224, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:31:"2024/02/testimonial-skip-04.jpg";s:8:"filesize";i:16062;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:{}}}'),
(260, 224, '_wxr_import_user_slug', 'emmanuelm'),
(261, 224, '_astra_sites_imported_post', '1'),
(262, 224, '_astra_sites_enable_for_batch', '1'),
(263, 224, '_astra_sites_image_hash', 'ee8ba2de3e9596996572079b7b7e85ff82a9b85d'),
(264, 224, '_elementor_source_image_hash', 'ee8ba2de3e9596996572079b7b7e85ff82a9b85d'),
(267, 225, '_astra_sites_imported_post', '1'),
(268, 225, '_astra_sites_enable_for_batch', '1'),
(269, 226, 'surerank_seo_checks', 'a:15:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:14:"image_alt_text";a:5:{s:6:"status";s:10:"suggestion";s:11:"description";a:1:{i:0;a:1:{s:4:"list";a:4:{i:0;s:83:"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg";i:1;s:83:"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg";i:2;s:83:"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg";i:3;s:83:"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg";}}}s:7:"message";s:108:"One or more images are missing alt text attributes. But don''t worry, we will add them automatically for you.";s:11:"show_images";b:1;s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:30:"Links are present on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:9:"all_links";a:3:{i:0;s:8:"contact/";i:1;s:6:"about/";i:2;s:9:"services/";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(270, 226, 'surerank_seo_checks_last_updated', '1763191218'),
(271, 226, '_customize_changeset_uuid', 'f5f5b3bc-04c2-4926-944d-46dca9d59433'),
(272, 226, 'site-post-title', 'disabled'),
(273, 226, 'theme-transparent-header-meta', 'enabled'),
(277, 226, '_wxr_import_user_slug', 'emmanuelm'),
(278, 226, '_astra_sites_imported_post', '1'),
(279, 226, '_astra_sites_enable_for_batch', '1'),
(280, 227, 'surerank_seo_checks', 'a:14:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:14:"image_alt_text";a:5:{s:6:"status";s:10:"suggestion";s:11:"description";a:1:{i:0;s:48:"Images on the post/page have alt text attributes";}s:7:"message";s:49:"All images on this page have alt text attributes.";s:11:"show_images";b:0;s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(281, 227, 'surerank_seo_checks_last_updated', '1763191517'),
(282, 227, '_customize_changeset_uuid', 'f5f5b3bc-04c2-4926-944d-46dca9d59433'),
(283, 227, 'site-post-title', 'disabled'),
(284, 227, 'theme-transparent-header-meta', 'enabled'),
(287, 227, '_wxr_import_user_slug', 'emmanuelm'),
(288, 227, '_astra_sites_imported_post', '1'),
(289, 227, '_astra_sites_enable_for_batch', '1'),
(290, 228, 'surerank_seo_checks', 'a:14:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:14:"image_alt_text";a:5:{s:6:"status";s:10:"suggestion";s:11:"description";a:1:{i:0;s:48:"Images on the post/page have alt text attributes";}s:7:"message";s:49:"All images on this page have alt text attributes.";s:11:"show_images";b:0;s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(291, 228, 'surerank_seo_checks_last_updated', '1763191525'),
(292, 228, '_customize_changeset_uuid', 'f5f5b3bc-04c2-4926-944d-46dca9d59433'),
(293, 228, 'site-post-title', 'disabled'),
(294, 228, 'theme-transparent-header-meta', 'enabled'),
(297, 228, '_wxr_import_user_slug', 'emmanuelm'),
(298, 228, '_astra_sites_imported_post', '1'),
(299, 228, '_astra_sites_enable_for_batch', '1'),
(300, 229, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:30:"Links are present on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(301, 229, 'surerank_seo_checks_last_updated', '1763191520'),
(302, 229, '_customize_changeset_uuid', 'f5f5b3bc-04c2-4926-944d-46dca9d59433'),
(303, 229, 'site-post-title', 'disabled'),
(304, 229, 'theme-transparent-header-meta', 'enabled'),
(307, 229, '_wxr_import_user_slug', 'emmanuelm'),
(308, 229, '_astra_sites_imported_post', '1'),
(309, 229, '_astra_sites_enable_for_batch', '1'),
(310, 230, '_menu_item_type', 'post_type'),
(311, 230, '_menu_item_object_id', '226'),
(312, 230, '_menu_item_object', 'page'),
(313, 230, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(314, 230, '_wp_old_date', '2024-02-19'),
(315, 230, '_wp_old_date', '2024-02-27'),
(316, 230, '_wxr_import_user_slug', 'emmanuelm'),
(317, 230, '_astra_sites_imported_post', '1'),
(318, 230, '_astra_sites_enable_for_batch', '1'),
(319, 231, '_menu_item_type', 'post_type'),
(320, 231, '_menu_item_object_id', '227'),
(321, 231, '_menu_item_object', 'page'),
(322, 231, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(323, 231, '_wp_old_date', '2024-02-19'),
(324, 231, '_wp_old_date', '2024-02-27'),
(325, 231, '_wxr_import_user_slug', 'emmanuelm'),
(326, 231, '_astra_sites_imported_post', '1'),
(327, 231, '_astra_sites_enable_for_batch', '1'),
(328, 44, '_menu_item_type', 'post_type'),
(329, 44, '_menu_item_object_id', '228'),
(330, 44, '_menu_item_object', 'page'),
(331, 44, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(332, 44, '_wp_old_date', '2024-02-19'),
(333, 44, '_wp_old_date', '2024-02-27'),
(334, 44, '_wxr_import_user_slug', 'emmanuelm'),
(335, 44, '_astra_sites_imported_post', '1'),
(336, 44, '_astra_sites_enable_for_batch', '1'),
(337, 45, '_menu_item_type', 'post_type'),
(338, 45, '_menu_item_object_id', '229'),
(339, 45, '_menu_item_object', 'page'),
(340, 45, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(341, 45, '_wp_old_date', '2024-02-19'),
(342, 45, '_wp_old_date', '2024-02-27'),
(343, 45, '_wxr_import_user_slug', 'emmanuelm'),
(344, 45, '_astra_sites_imported_post', '1'),
(345, 45, '_astra_sites_enable_for_batch', '1'),
(346, 55, '_wxr_import_user_slug', 'emmanuelm'),
(347, 55, '_astra_sites_imported_post', '1'),
(348, 55, '_astra_sites_enable_for_batch', '1'),
(349, 178, '_wxr_import_user_slug', 'emmanuelm'),
(350, 178, '_astra_sites_imported_post', '1'),
(351, 178, '_astra_sites_enable_for_batch', '1'),
(354, 244, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"Search engine title exceeds 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(355, 244, 'surerank_seo_checks_last_updated', '1763183363'),
(356, 244, 'ast-site-content-layout', 'narrow-width-container'),
(357, 244, 'theme-transparent-header-meta', 'default'),
(358, 244, 'astra-migrate-meta-layouts', 'set'),
(359, 244, '_wp_old_slug', 'scaling-your-business'),
(360, 244, '_wp_old_slug', 'mastering-the-first-impression-your-intriguing-post-title-goes-here'),
(361, 244, 'site-sidebar-layout', 'no-sidebar'),
(362, 244, '_wp_old_slug', 'demo-post-3'),
(363, 244, '_thumbnail_id', '11'),
(366, 244, '_wxr_import_user_slug', 'emmanuelm'),
(367, 244, '_astra_sites_imported_post', '1'),
(368, 244, '_astra_sites_enable_for_batch', '1'),
(371, 246, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"Search engine title exceeds 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(372, 246, 'surerank_seo_checks_last_updated', '1763183363'),
(373, 246, 'ast-site-content-layout', 'narrow-width-container'),
(374, 246, 'theme-transparent-header-meta', 'default'),
(375, 246, 'astra-migrate-meta-layouts', 'set'),
(376, 246, '_wp_old_slug', 'the-art-of-sales-and-marketing'),
(377, 246, '_wp_old_slug', 'the-art-of-drawing-readers-in-your-attractive-post-title-goes-here'),
(378, 246, 'site-sidebar-layout', 'no-sidebar'),
(379, 246, '_wp_old_slug', 'demo-post-2'),
(380, 246, '_thumbnail_id', '10'),
(383, 246, '_wxr_import_user_slug', 'emmanuelm'),
(384, 246, '_astra_sites_imported_post', '1'),
(385, 246, '_astra_sites_enable_for_batch', '1'),
(388, 247, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"This page includes images or videos to enhance content.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"Search engine title exceeds 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(389, 247, 'surerank_seo_checks_last_updated', '1763183363'),
(390, 247, 'ast-site-content-layout', 'narrow-width-container'),
(391, 247, 'theme-transparent-header-meta', 'default'),
(392, 247, 'astra-migrate-meta-layouts', 'set'),
(393, 247, '_wp_old_slug', 'exploring-global-markets'),
(394, 247, '_wp_old_slug', 'crafting-captivating-headlines-your-awesome-post-title-goes-here'),
(395, 247, 'site-sidebar-layout', 'no-sidebar'),
(396, 247, '_wp_old_slug', 'demo-post-1'),
(397, 247, '_thumbnail_id', '9'),
(400, 247, '_wxr_import_user_slug', 'emmanuelm'),
(401, 247, '_astra_sites_imported_post', '1'),
(402, 247, '_astra_sites_enable_for_batch', '1'),
(403, 298, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"The page does not contain any subheadings.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:49:"Search engine description is missing on the page.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(404, 298, 'surerank_seo_checks_last_updated', '1763191518'),
(405, 298, 'theme-transparent-header-meta', 'enabled'),
(408, 298, '_wxr_import_user_slug', 'emmanuelm'),
(409, 298, '_astra_sites_imported_post', '1'),
(410, 298, '_astra_sites_enable_for_batch', '1'),
(411, 301, '_menu_item_type', 'post_type'),
(412, 301, '_menu_item_object_id', '298'),
(413, 301, '_menu_item_object', 'page');
INSERT INTO `wp8u_postmeta` VALUES
(414, 301, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(415, 301, '_wxr_import_user_slug', 'youssefk'),
(416, 301, '_astra_sites_imported_post', '1'),
(417, 301, '_astra_sites_enable_for_batch', '1'),
(418, 303, '_wp_attached_file', '2024/03/post-images-01-scaled-1.jpg'),
(419, 303, '_wp_attachment_image_alt', 'post images 01'),
(420, 303, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1443;s:4:"file";s:35:"2024/03/post-images-01-scaled-1.jpg";s:8:"filesize";i:1181299;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:35:"post-images-01-scaled-1-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:18056;}s:5:"large";a:5:{s:4:"file";s:36:"post-images-01-scaled-1-1024x577.jpg";s:5:"width";i:1024;s:6:"height";i:577;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:202412;}s:9:"thumbnail";a:5:{s:4:"file";s:35:"post-images-01-scaled-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7873;}s:12:"medium_large";a:5:{s:4:"file";s:35:"post-images-01-scaled-1-768x433.jpg";s:5:"width";i:768;s:6:"height";i:433;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:113695;}s:9:"1536x1536";a:5:{s:4:"file";s:36:"post-images-01-scaled-1-1536x866.jpg";s:5:"width";i:1536;s:6:"height";i:866;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:437558;}s:9:"2048x2048";a:5:{s:4:"file";s:37:"post-images-01-scaled-1-2048x1154.jpg";s:5:"width";i:2048;s:6:"height";i:1154;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:721795;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(421, 303, '_wxr_import_user_slug', 'youssefk'),
(422, 303, '_astra_sites_imported_post', '1'),
(423, 303, '_astra_sites_enable_for_batch', '1'),
(424, 303, '_astra_sites_image_hash', '5ee1ebe37e518b23e0a5b4985f5381dea43eeb75'),
(425, 303, '_elementor_source_image_hash', '5ee1ebe37e518b23e0a5b4985f5381dea43eeb75'),
(426, 304, '_wp_attached_file', '2024/03/post-images-02-scaled-1.jpg'),
(427, 304, '_wp_attachment_image_alt', 'post images 02'),
(428, 304, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1707;s:4:"file";s:35:"2024/03/post-images-02-scaled-1.jpg";s:8:"filesize";i:373338;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:35:"post-images-02-scaled-1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:15025;}s:5:"large";a:5:{s:4:"file";s:36:"post-images-02-scaled-1-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:92567;}s:9:"thumbnail";a:5:{s:4:"file";s:35:"post-images-02-scaled-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7478;}s:12:"medium_large";a:5:{s:4:"file";s:35:"post-images-02-scaled-1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:60314;}s:9:"1536x1536";a:5:{s:4:"file";s:37:"post-images-02-scaled-1-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:169175;}s:9:"2048x2048";a:5:{s:4:"file";s:37:"post-images-02-scaled-1-2048x1366.jpg";s:5:"width";i:2048;s:6:"height";i:1366;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:259007;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(429, 304, '_wxr_import_user_slug', 'youssefk'),
(430, 304, '_astra_sites_imported_post', '1'),
(431, 304, '_astra_sites_enable_for_batch', '1'),
(432, 304, '_astra_sites_image_hash', 'a8e7139b8be584fe08eadb7b3d2214007a525fbd'),
(433, 304, '_elementor_source_image_hash', 'a8e7139b8be584fe08eadb7b3d2214007a525fbd'),
(434, 305, '_wp_attached_file', '2024/03/post-images-03-scaled-1.jpg'),
(435, 305, '_wp_attachment_image_alt', 'post images 03'),
(436, 305, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1706;s:4:"file";s:35:"2024/03/post-images-03-scaled-1.jpg";s:8:"filesize";i:380057;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:35:"post-images-03-scaled-1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:12528;}s:5:"large";a:5:{s:4:"file";s:36:"post-images-03-scaled-1-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:79800;}s:9:"thumbnail";a:5:{s:4:"file";s:35:"post-images-03-scaled-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5970;}s:12:"medium_large";a:5:{s:4:"file";s:35:"post-images-03-scaled-1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:50470;}s:9:"1536x1536";a:5:{s:4:"file";s:37:"post-images-03-scaled-1-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:153546;}s:9:"2048x2048";a:5:{s:4:"file";s:37:"post-images-03-scaled-1-2048x1365.jpg";s:5:"width";i:2048;s:6:"height";i:1365;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:248647;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(437, 305, '_wxr_import_user_slug', 'youssefk'),
(438, 305, '_astra_sites_imported_post', '1'),
(439, 305, '_astra_sites_enable_for_batch', '1'),
(440, 305, '_astra_sites_image_hash', 'f73505082002007a55dc3e7306a0d522b0fa6aae'),
(441, 305, '_elementor_source_image_hash', 'f73505082002007a55dc3e7306a0d522b0fa6aae'),
(442, 419, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"The page does not contain any subheadings.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:49:"Search engine description is missing on the page.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(443, 419, 'surerank_seo_checks_last_updated', '1763183358'),
(444, 419, '_srfm_submit_button_text', 'Submit'),
(445, 419, '_srfm_submit_width_backend', 'max-content'),
(446, 419, '_srfm_submit_alignment', 'left'),
(447, 419, '_srfm_submit_alignment_backend', '100%'),
(448, 419, '_srfm_submit_type', 'message'),
(449, 419, '_srfm_form_recaptcha', 'none'),
(450, 419, '_srfm_forms_styling', 'a:5:{s:13:"primary_color";s:25:"var(--ast-global-color-0)";s:10:"text_color";s:25:"var(--ast-global-color-2)";s:21:"text_color_on_primary";s:7:"#FFFFFF";s:13:"field_spacing";s:6:"medium";s:23:"submit_button_alignment";s:4:"left";}'),
(451, 419, '_wxr_import_user_slug', 'amitm'),
(452, 419, '_astra_sites_imported_post', '1'),
(453, 419, '_astra_sites_enable_for_batch', '1'),
(454, 425, '_wp_attached_file', '2025/11/default.png'),
(455, 425, '_wp_attachment_image_alt', 'default.png'),
(456, 425, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:48;s:6:"height";i:64;s:4:"file";s:19:"2025/11/default.png";s:8:"filesize";i:168;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:{}}}'),
(457, 425, '_astra_sites_image_hash', '14b4f4a4816a26691714adc32891dccc65352cc1'),
(458, 425, '_astra_sites_imported_post', '1'),
(459, 425, '_astra_sites_enable_for_batch', '1'),
(460, 426, '_wp_attached_file', '2025/11/cta-150x150-1.jpg'),
(461, 426, '_wp_attachment_image_alt', 'cta 150x150.jpg'),
(462, 426, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:25:"2025/11/cta-150x150-1.jpg";s:8:"filesize";i:6901;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:{}}}'),
(463, 426, '_astra_sites_image_hash', 'd9659888f01065f6da334a31aa7132d22dd39096'),
(464, 426, '_astra_sites_imported_post', '1'),
(465, 426, '_astra_sites_enable_for_batch', '1'),
(466, 427, '_wp_attached_file', '2025/11/cta-300x102-1.jpg'),
(467, 427, '_wp_attachment_image_alt', 'cta 300x102.jpg'),
(468, 427, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:102;s:4:"file";s:25:"2025/11/cta-300x102-1.jpg";s:8:"filesize";i:9408;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:25:"cta-300x102-1-150x102.jpg";s:5:"width";i:150;s:6:"height";i:102;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5000;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(469, 427, '_astra_sites_image_hash', 'a50b81be0c2fb95d471070ed543de4b7dc019bd1'),
(470, 427, '_astra_sites_imported_post', '1'),
(471, 427, '_astra_sites_enable_for_batch', '1'),
(472, 428, '_wp_attached_file', '2025/11/cta-1024x347-1.jpg'),
(473, 428, '_wp_attachment_image_alt', 'cta 1024x347.jpg'),
(474, 428, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:347;s:4:"file";s:26:"2025/11/cta-1024x347-1.jpg";s:8:"filesize";i:84846;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:26:"cta-1024x347-1-300x102.jpg";s:5:"width";i:300;s:6:"height";i:102;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:9194;}s:9:"thumbnail";a:5:{s:4:"file";s:26:"cta-1024x347-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6665;}s:12:"medium_large";a:5:{s:4:"file";s:26:"cta-1024x347-1-768x260.jpg";s:5:"width";i:768;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:46928;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(475, 428, '_astra_sites_image_hash', '3abfd5d363f2746a320f011ec1de0d2da5716975'),
(476, 428, '_astra_sites_imported_post', '1'),
(477, 428, '_astra_sites_enable_for_batch', '1'),
(478, 432, '_wp_attached_file', '2025/11/home-bg-150x150-1.jpg'),
(479, 432, '_wp_attachment_image_alt', 'home bg 150x150.jpg'),
(480, 432, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:29:"2025/11/home-bg-150x150-1.jpg";s:8:"filesize";i:5978;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:{}}}'),
(481, 432, '_astra_sites_image_hash', 'ca7e38ffc6c56207f3e21460b7b90f8d6b9f74c5'),
(482, 432, '_astra_sites_imported_post', '1'),
(483, 432, '_astra_sites_enable_for_batch', '1'),
(484, 433, '_wp_attached_file', '2025/11/home-bg-300x135-1.jpg'),
(485, 433, '_wp_attachment_image_alt', 'home bg 300x135.jpg'),
(486, 433, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:135;s:4:"file";s:29:"2025/11/home-bg-300x135-1.jpg";s:8:"filesize";i:9189;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:29:"home-bg-300x135-1-150x135.jpg";s:5:"width";i:150;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5434;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(487, 433, '_astra_sites_image_hash', 'cfe8896586a25de3a95ef41acb7f99fbe6b65219'),
(488, 433, '_astra_sites_imported_post', '1'),
(489, 433, '_astra_sites_enable_for_batch', '1'),
(490, 434, '_wp_attached_file', '2025/11/home-bg-1024x462-1.jpg'),
(491, 434, '_wp_attachment_image_alt', 'home bg 1024x462.jpg'),
(492, 434, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:462;s:4:"file";s:30:"2025/11/home-bg-1024x462-1.jpg";s:8:"filesize";i:68703;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:30:"home-bg-1024x462-1-300x135.jpg";s:5:"width";i:300;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:9061;}s:9:"thumbnail";a:5:{s:4:"file";s:30:"home-bg-1024x462-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5853;}s:12:"medium_large";a:5:{s:4:"file";s:30:"home-bg-1024x462-1-768x347.jpg";s:5:"width";i:768;s:6:"height";i:347;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:41045;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(493, 434, '_astra_sites_image_hash', '9aa4314d632ea3aa81a078899ec4fb36ee1a3099'),
(494, 434, '_astra_sites_imported_post', '1'),
(495, 434, '_astra_sites_enable_for_batch', '1'),
(496, 435, '_wp_attached_file', '2025/11/services-05-150x150-1.jpg'),
(497, 435, '_wp_attachment_image_alt', 'services 05 150x150.jpg'),
(498, 435, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:33:"2025/11/services-05-150x150-1.jpg";s:8:"filesize";i:6973;s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(499, 435, '_astra_sites_image_hash', 'b5e13bac50212e56930d7509191954c40bb2fe10'),
(500, 435, '_astra_sites_imported_post', '1'),
(501, 435, '_astra_sites_enable_for_batch', '1'),
(502, 436, '_wp_attached_file', '2025/11/services-05-233x300-1.jpg'),
(503, 436, '_wp_attachment_image_alt', 'services 05 233x300.jpg'),
(504, 436, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:233;s:6:"height";i:300;s:4:"file";s:33:"2025/11/services-05-233x300-1.jpg";s:8:"filesize";i:17213;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:33:"services-05-233x300-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6541;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(505, 436, '_astra_sites_image_hash', 'c3f1639d6fecfabf5908750b9487dbe59342fcb3'),
(506, 436, '_astra_sites_imported_post', '1'),
(507, 436, '_astra_sites_enable_for_batch', '1'),
(508, 437, '_wp_attached_file', '2025/11/services-06-150x150-1.jpg'),
(509, 437, '_wp_attachment_image_alt', 'services 06 150x150.jpg'),
(510, 437, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:33:"2025/11/services-06-150x150-1.jpg";s:8:"filesize";i:4666;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:{}}}'),
(511, 437, '_astra_sites_image_hash', '455a8e9335ba97250c43c1d2cef4f3491d5d592f'),
(512, 437, '_astra_sites_imported_post', '1'),
(513, 437, '_astra_sites_enable_for_batch', '1'),
(514, 438, '_wp_attached_file', '2025/11/services-06-233x300-1.jpg'),
(515, 438, '_wp_attachment_image_alt', 'services 06 233x300.jpg'),
(516, 438, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:233;s:6:"height";i:300;s:4:"file";s:33:"2025/11/services-06-233x300-1.jpg";s:8:"filesize";i:9749;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:33:"services-06-233x300-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4457;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(517, 438, '_astra_sites_image_hash', '28ed09714446c57675c9481b51c5a168741c73f2'),
(518, 438, '_astra_sites_imported_post', '1'),
(519, 438, '_astra_sites_enable_for_batch', '1'),
(520, 439, '_wp_attached_file', '2025/11/services-07-150x150-1.jpg'),
(521, 439, '_wp_attachment_image_alt', 'services 07 150x150.jpg'),
(522, 439, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:33:"2025/11/services-07-150x150-1.jpg";s:8:"filesize";i:5806;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:{}}}'),
(523, 439, '_astra_sites_image_hash', 'e288e1c21574c2dc90ce0c2a5be30c7b8e830a27'),
(524, 439, '_astra_sites_imported_post', '1'),
(525, 439, '_astra_sites_enable_for_batch', '1'),
(526, 440, '_wp_attached_file', '2025/11/services-07-233x300-1.jpg'),
(527, 440, '_wp_attachment_image_alt', 'services 07 233x300.jpg'),
(528, 440, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:233;s:6:"height";i:300;s:4:"file";s:33:"2025/11/services-07-233x300-1.jpg";s:8:"filesize";i:14800;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:33:"services-07-233x300-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5500;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(529, 440, '_astra_sites_image_hash', '68113596675a8630065a4d0634af9316da7c6e59'),
(530, 440, '_astra_sites_imported_post', '1'),
(531, 440, '_astra_sites_enable_for_batch', '1'),
(532, 441, '_wp_attached_file', '2025/11/craft-150x150-1.jpg'),
(533, 441, '_wp_attachment_image_alt', 'craft 150x150.jpg'),
(534, 441, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:27:"2025/11/craft-150x150-1.jpg";s:8:"filesize";i:8482;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:{}}}'),
(535, 441, '_astra_sites_image_hash', '75d86605e822957aabf12cf88a534c223d64ecef'),
(536, 441, '_astra_sites_imported_post', '1'),
(537, 441, '_astra_sites_enable_for_batch', '1'),
(538, 442, '_wp_attached_file', '2025/11/craft-300x233-1.jpg'),
(539, 442, '_wp_attachment_image_alt', 'craft 300x233.jpg'),
(540, 442, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:233;s:4:"file";s:27:"2025/11/craft-300x233-1.jpg";s:8:"filesize";i:22211;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:27:"craft-300x233-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7884;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(541, 442, '_astra_sites_image_hash', 'ed758c31fe4ae1e4d8992440541bdc25cdf900dd'),
(542, 442, '_astra_sites_imported_post', '1'),
(543, 442, '_astra_sites_enable_for_batch', '1'),
(550, 446, '_wp_attached_file', '2025/11/about-bg-150x150-1.jpg'),
(551, 446, '_wp_attachment_image_alt', 'about bg 150x150.jpg'),
(552, 446, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:30:"2025/11/about-bg-150x150-1.jpg";s:8:"filesize";i:5780;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:{}}}'),
(553, 446, '_astra_sites_image_hash', '1979cf6aac9c91723e72554c8ab9d30648a8bb07'),
(554, 446, '_astra_sites_imported_post', '1'),
(555, 446, '_astra_sites_enable_for_batch', '1'),
(556, 447, '_wp_attached_file', '2025/11/about-bg-300x91-1.jpg'),
(557, 447, '_wp_attachment_image_alt', 'about bg 300x91.jpg'),
(558, 447, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:91;s:4:"file";s:29:"2025/11/about-bg-300x91-1.jpg";s:8:"filesize";i:7486;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:28:"about-bg-300x91-1-150x91.jpg";s:5:"width";i:150;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4293;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(559, 447, '_astra_sites_image_hash', '0052f654e361fb4d658262861e02154caee48e11'),
(560, 447, '_astra_sites_imported_post', '1'),
(561, 447, '_astra_sites_enable_for_batch', '1'),
(562, 448, '_wp_attached_file', '2025/11/about-bg-1024x310-1.jpg'),
(563, 448, '_wp_attachment_image_alt', 'about bg 1024x310.jpg'),
(564, 448, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:310;s:4:"file";s:31:"2025/11/about-bg-1024x310-1.jpg";s:8:"filesize";i:57480;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:30:"about-bg-1024x310-1-300x91.jpg";s:5:"width";i:300;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7343;}s:9:"thumbnail";a:5:{s:4:"file";s:31:"about-bg-1024x310-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5533;}s:12:"medium_large";a:5:{s:4:"file";s:31:"about-bg-1024x310-1-768x233.jpg";s:5:"width";i:768;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:32690;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(565, 448, '_astra_sites_image_hash', '61052fb6e739b01be52e7cf9792bfd420157c9a8'),
(566, 448, '_astra_sites_imported_post', '1'),
(567, 448, '_astra_sites_enable_for_batch', '1'),
(568, 449, '_wp_attached_file', '2025/11/mission-1024x400-1.jpg'),
(569, 449, '_wp_attachment_image_alt', 'mission 1024x400.jpg'),
(570, 449, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:400;s:4:"file";s:30:"2025/11/mission-1024x400-1.jpg";s:8:"filesize";i:118176;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:30:"mission-1024x400-1-300x117.jpg";s:5:"width";i:300;s:6:"height";i:117;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11948;}s:9:"thumbnail";a:5:{s:4:"file";s:30:"mission-1024x400-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8178;}s:12:"medium_large";a:5:{s:4:"file";s:30:"mission-1024x400-1-768x300.jpg";s:5:"width";i:768;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:65349;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(571, 449, '_astra_sites_image_hash', 'b070c92e17077586dc33bd23be39e19260bccddd'),
(572, 449, '_astra_sites_imported_post', '1'),
(573, 449, '_astra_sites_enable_for_batch', '1'),
(574, 452, '_wp_attached_file', '2025/11/services-bg-150x150-1.jpg'),
(575, 452, '_wp_attachment_image_alt', 'services bg 150x150.jpg'),
(576, 452, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:33:"2025/11/services-bg-150x150-1.jpg";s:8:"filesize";i:8035;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:{}}}'),
(577, 452, '_astra_sites_image_hash', '2ba0359fb2c9f020e3c9931d1c96d715f0eee49d'),
(578, 452, '_astra_sites_imported_post', '1'),
(579, 452, '_astra_sites_enable_for_batch', '1'),
(580, 453, '_wp_attached_file', '2025/11/services-bg-300x91-1.jpg'),
(581, 453, '_wp_attachment_image_alt', 'services bg 300x91.jpg'),
(582, 453, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:91;s:4:"file";s:32:"2025/11/services-bg-300x91-1.jpg";s:8:"filesize";i:9073;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:31:"services-bg-300x91-1-150x91.jpg";s:5:"width";i:150;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5643;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(583, 453, '_astra_sites_image_hash', '440e9f29ab5e367d802f920b605f25bb8f1983f5'),
(584, 453, '_astra_sites_imported_post', '1'),
(585, 453, '_astra_sites_enable_for_batch', '1'),
(586, 454, '_wp_attached_file', '2025/11/services-bg-1024x310-1.jpg'),
(587, 454, '_wp_attachment_image_alt', 'services bg 1024x310.jpg'),
(588, 454, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:310;s:4:"file";s:34:"2025/11/services-bg-1024x310-1.jpg";s:8:"filesize";i:75852;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:33:"services-bg-1024x310-1-300x91.jpg";s:5:"width";i:300;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8920;}s:9:"thumbnail";a:5:{s:4:"file";s:34:"services-bg-1024x310-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7728;}s:12:"medium_large";a:5:{s:4:"file";s:34:"services-bg-1024x310-1-768x233.jpg";s:5:"width";i:768;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:43171;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(589, 454, '_astra_sites_image_hash', 'b61de47327dacca3519b47cd75f6c03b5d5f8485'),
(590, 454, '_astra_sites_imported_post', '1'),
(591, 454, '_astra_sites_enable_for_batch', '1'),
(592, 457, '_wp_attached_file', '2025/11/contact-bg-150x150-1.jpg'),
(593, 457, '_wp_attachment_image_alt', 'contact bg 150x150.jpg'),
(594, 457, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:32:"2025/11/contact-bg-150x150-1.jpg";s:8:"filesize";i:8226;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:{}}}'),
(595, 457, '_astra_sites_image_hash', 'b335528aa6e5d494132657527f722120c30e048d'),
(596, 457, '_astra_sites_imported_post', '1'),
(597, 457, '_astra_sites_enable_for_batch', '1'),
(598, 458, '_wp_attached_file', '2025/11/contact-bg-300x91-1.jpg'),
(599, 458, '_wp_attachment_image_alt', 'contact bg 300x91.jpg'),
(600, 458, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:91;s:4:"file";s:31:"2025/11/contact-bg-300x91-1.jpg";s:8:"filesize";i:9347;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:30:"contact-bg-300x91-1-150x91.jpg";s:5:"width";i:150;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5272;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(601, 458, '_astra_sites_image_hash', 'eaefd7647c406f0f5878539ee3691cfe9250d8bf'),
(602, 458, '_astra_sites_imported_post', '1'),
(603, 458, '_astra_sites_enable_for_batch', '1'),
(604, 459, '_wp_attached_file', '2025/11/contact-bg-1024x310-1.jpg'),
(605, 459, '_wp_attachment_image_alt', 'contact bg 1024x310.jpg'),
(606, 459, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1024;s:6:"height";i:310;s:4:"file";s:33:"2025/11/contact-bg-1024x310-1.jpg";s:8:"filesize";i:84631;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:32:"contact-bg-1024x310-1-300x91.jpg";s:5:"width";i:300;s:6:"height";i:91;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:9158;}s:9:"thumbnail";a:5:{s:4:"file";s:33:"contact-bg-1024x310-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7773;}s:12:"medium_large";a:5:{s:4:"file";s:33:"contact-bg-1024x310-1-768x233.jpg";s:5:"width";i:768;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:46389;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(607, 459, '_astra_sites_image_hash', '3327a0b63b3fe790fc2f11d145535e1c4c8d9bb9'),
(608, 459, '_astra_sites_imported_post', '1'),
(609, 459, '_astra_sites_enable_for_batch', '1'),
(613, 227, '_uag_page_assets', 'a:9:{s:3:"css";s:115924:".wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f{box-shadow: 0px 0px #00000070 ;padding-top: 120px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-f83a47d8 .uagb-ifb-icon svg{fill: #333;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 4%;margin-top: 0%;margin-left: 12%;margin-right: 12%;}.uagb-block-f83a47d8 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}\n.uagb-ifb-content>svg *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{-webkit-align-self:self-start;align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir="rtl"] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir="rtl"] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}\n.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}\n.wp-block-uagb-faq{width:100%}.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.wp-block-uagb-faq .uagb-faq-content{margin-bottom:0}.wp-block-uagb-faq .uagb-faq-content p{margin:auto}.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-item{height:100%}body[class*="astra"] .uagb-faq-questions{line-height:normal}.uagb-faq-item{overflow:hidden}\n.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0;margin-bottom:0}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:flex;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}\n.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4{box-shadow: 0px 0px #00000070 ;padding-top: 210px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-d5b134cc .uagb-ifb-icon svg{fill: #333;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-d5b134cc .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-d5b134cc .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-infobox__content-wrap{text-align: center;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-d5b134cc .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-43961427 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-43961427 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-43961427 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-43961427 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-43961427 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-43961427{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-43961427 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-43961427{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-91de6b3c .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-91de6b3c .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-91de6b3c .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-91de6b3c .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-91de6b3c .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-91de6b3c{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-91de6b3c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-91de6b3c{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-2359313e .uagb-ifb-icon svg{fill: #333;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-2359313e .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-2359313e .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-2359313e .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-infobox__content-wrap{text-align: left;}.uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-2359313e .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3e6b189a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-3e6b189a .uagb-ifb-icon svg{fill: #333;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3e6b189a .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3e6b189a .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3e6b189a .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3e6b189a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 20px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-3e6b189a .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-3e6b189a .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-3e6b189a .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3e6b189a .uagb-infobox__content-wrap{text-align: left;}.uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-3e6b189a .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-aa6e2cb7 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 1200px;height: 450px;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.wp-block-uagb-container.uagb-block-3f9cf3b8 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-3f9cf3b8 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-3f9cf3b8 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-3f9cf3b8 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-3f9cf3b8 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-3f9cf3b8{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-3f9cf3b8 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-3f9cf3b8{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-4bbc11b0 .uagb-ifb-icon svg{fill: #333;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-eba12409 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-eba12409 .uagb-ifb-icon svg{fill: #333;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-eba12409 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-eba12409 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-eba12409 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-eba12409 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-eba12409 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-eba12409 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-eba12409 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-eba12409 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-eba12409.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-eba12409 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-eba12409 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-eba12409.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-6f310176 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6f310176 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6f310176 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6f310176 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6f310176 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6f310176{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6f310176 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-6f310176{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-color: var(--ast-global-color-4);;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-5962c3bc .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5962c3bc .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5962c3bc .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5962c3bc .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5962c3bc .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5962c3bc{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5962c3bc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-5962c3bc{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.uagb-block-31e33fee .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-31e33fee .uagb-ifb-icon svg{fill: #333;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-31e33fee .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-31e33fee .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-31e33fee .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-31e33fee .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-31e33fee.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-31e33fee.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-31e33fee .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-31e33fee .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-31e33fee .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-31e33fee .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-31e33fee .uagb-infobox__content-wrap{text-align: left;}.uagb-block-31e33fee.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-31e33fee .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-31e33fee .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-0c5731f4 .uagb-icon svg{width: 20px;height: 20px;font-size: 20px;fill: var(--ast-global-color-2);}.uagb-block-0c5731f4 .uagb-icon-active svg{width: 20px;height: 20px;font-size: 20px;fill: var(--ast-global-color-0);}.uagb-block-0c5731f4 .uagb-faq-child__outer-wrap{margin-bottom: 20px;}.uagb-block-0c5731f4 .uagb-faq-item{background-color: var(--ast-global-color-5);border-top-width: 1px;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-color: var(--ast-global-color-6);border-style: solid;}.uagb-block-0c5731f4 .uagb-faq-questions-button{padding-top: 24px;padding-bottom: 24px;padding-right: 24px;padding-left: 24px;}.uagb-block-0c5731f4 .uagb-faq-content{padding-top: 0px;padding-bottom: 24px;padding-right: 24px;padding-left: 24px;}.uagb-block-0c5731f4 .uagb-faq-content span{margin-top: 0px;margin-bottom: 24px;margin-right: 24px;margin-left: 24px;}.uagb-block-0c5731f4.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap{margin-right: 10px;}.uagb-block-0c5731f4.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap{margin-left: 10px;}.uagb-block-0c5731f4 .uagb-faq-item:hover .uagb-icon svg{fill: var(--ast-global-color-0);}.uagb-block-0c5731f4 .uagb-faq-item .uagb-faq-questions-button.uagb-faq-questions{flex-direction: row-reverse;}.uagb-block-0c5731f4.uagb-faq__outer-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-0c5731f4 .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-content {display: none;}.uagb-block-0c5731f4 .uagb-faq-questions-button .uagb-question{font-weight: 400;font-size: 18px;}.wp-block-uagb-container.uagb-block-892c8053 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-892c8053 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-892c8053 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-892c8053 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-892c8053 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-892c8053{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-892c8053 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-892c8053{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image{text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8c89d0eb .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 500px;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 140px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-43961427{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-43961427 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;row-gap: 50px;}.wp-block-uagb-container.uagb-block-43961427{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;row-gap: 50px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-91de6b3c{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-91de6b3c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;row-gap: 20px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-91de6b3c{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;flex-direction: column;row-gap: 20px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-91de6b3c.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-91de6b3c.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3e6b189a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3e6b189a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 1200px;height: 350px;}.uagb-block-aa6e2cb7.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-aa6e2cb7 .wp-block-uagb-image__figure{align-items: flex-start;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-3f9cf3b8{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-3f9cf3b8 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;column-gap: 40px;}.wp-block-uagb-container.uagb-block-3f9cf3b8{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: flex-start;column-gap: 40px;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-eba12409 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-eba12409 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-eba12409 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6f310176{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6f310176 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-block-6f310176{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5962c3bc{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5962c3bc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: center;row-gap: 40px;}.wp-block-uagb-container.uagb-block-5962c3bc{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;align-items: flex-start;justify-content: center;row-gap: 40px;}.uagb-block-31e33fee .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-31e33fee.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-31e33fee .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-31e33fee .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-0c5731f4.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap{margin-right: 10px;}.uagb-block-0c5731f4.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap{margin-left: 10px;}.uagb-block-0c5731f4 .uagb-faq-questions-button{padding-top: 15px;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-content{padding-top: 0px;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-content span{margin-top: 0px;margin-bottom: 15px;margin-right: 15px;margin-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-child__outer-wrap{margin-bottom: 20px;}.uagb-block-0c5731f4 .uagb-faq-item{border-style: solid;border-color: var(--ast-global-color-6);}.uagb-block-0c5731f4 .uagb-faq-questions-button .uagb-question{font-size: 17px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-892c8053{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-892c8053 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-892c8053{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;justify-content: flex-start;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 400px;}.uagb-block-8c89d0eb.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8c89d0eb .wp-block-uagb-image__figure{align-items: flex-start;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 150px;padding-bottom: 80px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-43961427{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-43961427 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 55px;}.wp-block-uagb-container.uagb-block-43961427{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 55px;order: initial;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-91de6b3c{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-91de6b3c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 20px;}.wp-block-uagb-container.uagb-block-91de6b3c{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 20px;order: initial;flex-wrap: wrap;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3e6b189a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3e6b189a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-3e6b189a .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3e6b189a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-aa6e2cb7.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 300px;}.uagb-block-aa6e2cb7.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-aa6e2cb7 .wp-block-uagb-image__figure{align-items: flex-start;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-3f9cf3b8{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-3f9cf3b8 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-3f9cf3b8{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;flex-wrap: wrap;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-eba12409 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-eba12409 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-eba12409 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-eba12409.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-eba12409 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-eba12409.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-eba12409.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6f310176{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6f310176 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column-reverse;align-items: stretch;flex-wrap: wrap;row-gap: 40px;}.wp-block-uagb-container.uagb-block-6f310176{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 40px;order: initial;background-color: var(--ast-global-color-4);;}.wp-block-uagb-container.uagb-block-6f310176.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-6f310176.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5962c3bc{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5962c3bc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 45px;}.wp-block-uagb-container.uagb-block-5962c3bc{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 45px;order: initial;flex-wrap: wrap;}.uagb-block-31e33fee .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-31e33fee.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-31e33fee .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-31e33fee .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-31e33fee.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-31e33fee .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-31e33fee.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-0c5731f4.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap{margin-right: 10px;}.uagb-block-0c5731f4 .uagb-faq-item{border-style: solid;border-color: var(--ast-global-color-6);}.uagb-block-0c5731f4.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap{margin-left: 10px;}.uagb-block-0c5731f4 .uagb-faq-questions-button{padding-top: 15px;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-content{padding-top: 0px;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-content span{margin-top: 0px;margin-bottom: 15px;margin-right: 15px;margin-left: 15px;}.uagb-block-0c5731f4 .uagb-faq-questions-button .uagb-question{font-size: 16px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-892c8053{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-892c8053 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-892c8053{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;flex-wrap: wrap;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-8c89d0eb.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 300px;}.uagb-block-8c89d0eb.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8c89d0eb .wp-block-uagb-image__figure{align-items: flex-start;}}";s:2:"js";s:0:"";s:18:"current_block_list";a:12:{i:0;s:14:"uagb/container";i:1;s:13:"uagb/info-box";i:2;s:10:"uagb/image";i:3;s:8:"uagb/faq";i:4;s:14:"uagb/faq-child";i:5;s:11:"core/search";i:6;s:10:"core/group";i:7;s:12:"core/heading";i:8;s:17:"core/latest-posts";i:9;s:20:"core/latest-comments";i:10;s:13:"core/archives";i:11;s:15:"core/categories";}s:8:"uag_flag";b:1;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:1;}');
INSERT INTO `wp8u_postmeta` VALUES
(615, 228, '_uag_page_assets', 'a:9:{s:3:"css";s:118765:".wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f{box-shadow: 0px 0px #00000070 ;padding-top: 120px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-f83a47d8 .uagb-ifb-icon svg{fill: #333;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 4%;margin-top: 0%;margin-left: 12%;margin-right: 12%;}.uagb-block-f83a47d8 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}\n.uagb-ifb-content>svg *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{-webkit-align-self:self-start;align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir="rtl"] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir="rtl"] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}\n.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}\n.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1000px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4{box-shadow: 0px 0px #00000070 ;padding-top: 210px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-d5b134cc .uagb-ifb-icon svg{fill: #333;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-d5b134cc .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-d5b134cc .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-infobox__content-wrap{text-align: center;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-d5b134cc .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-48009aef .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-48009aef .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-48009aef .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-48009aef .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-48009aef .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-48009aef{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-48009aef > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: space-between;flex-wrap: wrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-48009aef{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-5250fd34 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5250fd34 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5250fd34 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5250fd34 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5250fd34 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5250fd34{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5250fd34 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-5250fd34{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-e2a91d97 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-e2a91d97 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-e2a91d97 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-e2a91d97 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-e2a91d97 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-e2a91d97{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-e2a91d97 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-e2a91d97{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8590ae9a .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 450px;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-3c7afed0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-3c7afed0 .uagb-ifb-icon svg{fill: #333;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3c7afed0 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-3c7afed0 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-3c7afed0 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-3c7afed0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-3c7afed0 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-3c7afed0 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-3c7afed0 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3c7afed0 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3c7afed0.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-3c7afed0 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-3c7afed0 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-39480438 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-39480438 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-39480438 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-39480438 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-39480438 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-39480438{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-39480438 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-39480438{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-c0169bf8 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 350px;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-57760dfc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-57760dfc .uagb-ifb-icon svg{fill: #333;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-57760dfc .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-57760dfc .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-57760dfc .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-57760dfc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-57760dfc .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-57760dfc .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-57760dfc .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-57760dfc .uagb-infobox__content-wrap{text-align: left;}.uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-57760dfc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-57760dfc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-57760dfc .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-57760dfc .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-58944a93 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-58944a93 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-58944a93 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-58944a93 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-58944a93 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-58944a93{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-58944a93 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-58944a93{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-62a31330 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-62a31330 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-62a31330 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-62a31330 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-62a31330 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-62a31330{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-62a31330 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-62a31330{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-28a63686.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-28a63686 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-28a63686.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 350px;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-28a63686.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-b870fe7d .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-b870fe7d .uagb-ifb-icon svg{fill: #333;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-b870fe7d .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-b870fe7d .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-b870fe7d .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-b870fe7d .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-b870fe7d .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-b870fe7d .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-b870fe7d .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-b870fe7d .uagb-infobox__content-wrap{text-align: left;}.uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-b870fe7d.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-b870fe7d .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-b870fe7d .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-a474bc71 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a474bc71 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a474bc71 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a474bc71 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a474bc71 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a474bc71{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a474bc71 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-a474bc71{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: -126px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-616a26fd.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-616a26fd .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-616a26fd.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 450px;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-616a26fd.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-65a70ccb .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-65a70ccb .uagb-ifb-icon svg{fill: #333;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-65a70ccb .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-65a70ccb .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-65a70ccb .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-65a70ccb .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-65a70ccb .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-65a70ccb .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-65a70ccb .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-65a70ccb .uagb-infobox__content-wrap{text-align: left;}.uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-65a70ccb.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 50px;padding-bottom: 50px;padding-left: 50px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-65a70ccb .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-65a70ccb .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 140px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-48009aef{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-48009aef > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;row-gap: 55px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-48009aef{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;row-gap: 55px;column-gap: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5250fd34{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5250fd34 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-block-5250fd34{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: flex-start;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-e2a91d97{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-e2a91d97 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-e2a91d97{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 300px;}.uagb-block-8590ae9a.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8590ae9a .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-3c7afed0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3c7afed0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3c7afed0.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-3c7afed0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-39480438{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-39480438 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-39480438{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 200px;}.uagb-block-c0169bf8.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-c0169bf8 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-57760dfc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-57760dfc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-57760dfc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-57760dfc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-58944a93{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-58944a93 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: center;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-block-58944a93{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: center;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-62a31330{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-62a31330 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-62a31330{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-28a63686.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 200px;}.uagb-block-28a63686.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-28a63686 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-b870fe7d .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-b870fe7d .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-b870fe7d.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-b870fe7d .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a474bc71{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a474bc71 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-a474bc71{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: -64% !important;margin-bottom: 0% !important;margin-left: 0%;margin-right: 0%;order: initial;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-616a26fd.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 300px;}.uagb-block-616a26fd.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-616a26fd .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-65a70ccb .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-65a70ccb .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-65a70ccb.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-65a70ccb .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 150px;padding-bottom: 80px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-48009aef{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-48009aef > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 55px;}.wp-block-uagb-container.uagb-block-48009aef{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 55px;order: initial;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5250fd34{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5250fd34 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: center;flex-wrap: wrap;row-gap: 55px;}.wp-block-uagb-container.uagb-block-5250fd34{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 55px;order: initial;align-items: center;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-e2a91d97{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-e2a91d97 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-e2a91d97{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;flex-wrap: wrap;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-8590ae9a.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 250px;}.uagb-block-8590ae9a.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-8590ae9a .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-3c7afed0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-3c7afed0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-3c7afed0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-3c7afed0.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-3c7afed0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-3c7afed0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-39480438{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-39480438 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-39480438{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;flex-wrap: wrap;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-c0169bf8.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 250px;}.uagb-block-c0169bf8.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-c0169bf8 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-57760dfc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-57760dfc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-57760dfc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-57760dfc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-57760dfc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-57760dfc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-58944a93{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-58944a93 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: center;flex-wrap: wrap;row-gap: 55px;}.wp-block-uagb-container.uagb-block-58944a93{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 55px;order: initial;align-items: center;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-62a31330{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-62a31330 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-62a31330{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;flex-wrap: wrap;}.uagb-block-28a63686.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-28a63686.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 250px;}.uagb-block-28a63686.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-28a63686 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-b870fe7d .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-b870fe7d .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-b870fe7d .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-b870fe7d.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-b870fe7d .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-b870fe7d.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a474bc71{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a474bc71 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-a474bc71{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-color: var(--ast-global-color-4);;flex-wrap: wrap;}.uagb-block-616a26fd.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;}.uagb-block-616a26fd.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 250px;}.uagb-block-616a26fd.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-616a26fd .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-65a70ccb .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-65a70ccb .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-65a70ccb .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-65a70ccb.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 40px;padding-right: 30px;padding-bottom: 40px;padding-left: 30px;}.uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-65a70ccb .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-65a70ccb.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}";s:2:"js";s:0:"";s:18:"current_block_list";a:10:{i:0;s:14:"uagb/container";i:1;s:13:"uagb/info-box";i:5;s:10:"uagb/image";i:6;s:11:"core/search";i:7;s:10:"core/group";i:8;s:12:"core/heading";i:9;s:17:"core/latest-posts";i:10;s:20:"core/latest-comments";i:11;s:13:"core/archives";i:12;s:15:"core/categories";}s:8:"uag_flag";b:1;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}');
INSERT INTO `wp8u_postmeta` VALUES
(617, 229, '_uag_page_assets', 'a:9:{s:3:"css";s:106661:".wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f{box-shadow: 0px 0px #00000070 ;padding-top: 120px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-f83a47d8 .uagb-ifb-icon svg{fill: #333;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 4%;margin-top: 0%;margin-left: 12%;margin-right: 12%;}.uagb-block-f83a47d8 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}\n.uagb-ifb-content>svg *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{-webkit-align-self:self-start;align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir="rtl"] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir="rtl"] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}\n.uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.wp-block-uagb-icon-list-child{padding:0;transition:all 0.2s;display:inline-flex;color:#3a3a3a;align-items:center;text-decoration:none;box-shadow:none}.wp-block-uagb-icon-list-child span.uagb-icon-list__source-wrap{display:block;align-items:center}.uagb-icon-list__source-wrap svg{display:block}.uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}\n.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}.wp-block-uagb-icon-list-child .uagb-icon-list__label{word-break:break-word}\n.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}\n.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}\n.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9ed5e6d4 .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4{box-shadow: 0px 0px #00000070 ;padding-top: 210px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-d5b134cc .uagb-ifb-icon svg{fill: #333;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-d5b134cc .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-d5b134cc .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-d5b134cc .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-infobox__content-wrap{text-align: center;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-d5b134cc .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-5504678b .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5504678b .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5504678b .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5504678b .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5504678b .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5504678b{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5504678b > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-5504678b{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-251cd539 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-251cd539 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-251cd539 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-251cd539 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-251cd539 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-251cd539{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-251cd539 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-251cd539{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 60px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-4bbc11b0 .uagb-ifb-icon svg{fill: #333;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title{font-weight: 400;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-c9fbc81d .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c9fbc81d .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c9fbc81d .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c9fbc81d .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c9fbc81d .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c9fbc81d{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c9fbc81d > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 5px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-c9fbc81d{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 60px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 5px;column-gap: 0px;}.uagb-block-af7bb653 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-af7bb653 .uagb-ifb-icon svg{fill: #333;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-af7bb653 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-af7bb653 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-af7bb653 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-af7bb653 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-af7bb653 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-af7bb653 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-af7bb653 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-af7bb653 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-af7bb653 .uagb-ifb-title{font-weight: 400;font-size: 30px;}.uagb-block-af7bb653 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-af7bb653 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-ebef70d3 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-ebef70d3 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-ebef70d3 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-ebef70d3 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-ebef70d3 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-ebef70d3{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-ebef70d3 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 5px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-ebef70d3{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 60px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 5px;column-gap: 0px;}.uagb-block-da07b720 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-da07b720 .uagb-ifb-icon svg{fill: #333;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-da07b720 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-da07b720 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-da07b720 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-da07b720 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-da07b720 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-da07b720 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-da07b720 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-da07b720 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-da07b720 .uagb-ifb-title{font-weight: 400;font-size: 30px;}.uagb-block-da07b720 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-da07b720 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-5c0bd371 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5c0bd371 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5c0bd371 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5c0bd371 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5c0bd371 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5c0bd371{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5c0bd371 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 20px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-5c0bd371{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 20px;column-gap: 0px;}.uagb-block-e7f06968 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-e7f06968 .uagb-ifb-icon svg{fill: #333;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e7f06968 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e7f06968 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e7f06968 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e7f06968 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-e7f06968 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-e7f06968 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-e7f06968 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e7f06968 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e7f06968 .uagb-ifb-title{font-weight: 400;font-size: 30px;}.uagb-block-e7f06968 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-e7f06968 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;color: var(--ast-global-color-2);fill: var(--ast-global-color-2);}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-radius: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__label{text-decoration: !important;line-height: em;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__wrap{display: flex;flex-direction: row;justify-content: flex-start;-webkit-box-pack: flex-start;-ms-flex-pack: flex-start;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap svg{color: var(--ast-global-color-0);fill: var(--ast-global-color-0);}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child{text-decoration: !important;line-height: em;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 10px;margin-right: 10px;display: inline-flex;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child{margin-left: 0;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:last-child{margin-right: 0;}.uagb-block-6432aeab.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-6432aeab.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-2fc84443.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-2fc84443.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-e8e66f77.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-e8e66f77.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-75ad829c.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-75ad829c.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-1e528de7.wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.uagb-block-1e528de7.wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap{background: !important;border-color: !important;}.wp-block-uagb-container.uagb-block-7dfed97e .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7dfed97e .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7dfed97e .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7dfed97e .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7dfed97e .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7dfed97e{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7dfed97e > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-7dfed97e{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-color: var(--ast-global-color-4);;row-gap: 0px;column-gap: 80px;} .uagb-block-e1c989be .uagb-google-map__iframe{height: 650px;}.wp-block-uagb-container.uagb-block-d0cb7be2 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-d0cb7be2 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-d0cb7be2 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-d0cb7be2 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-d0cb7be2 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-d0cb7be2{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d0cb7be2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-d0cb7be2{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2 .uagb-heading-text{margin-bottom: 15px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 140px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5504678b{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5504678b > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 20px;}.wp-block-uagb-container.uagb-block-5504678b{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;column-gap: 20px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-251cd539{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-251cd539 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-251cd539{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 20px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);align-items: flex-start;justify-content: flex-start;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title{font-size: 20px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c9fbc81d{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c9fbc81d > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 5px;}.wp-block-uagb-container.uagb-block-c9fbc81d{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 20px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);align-items: flex-start;justify-content: flex-start;row-gap: 5px;}.uagb-block-af7bb653 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-af7bb653 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-af7bb653 .uagb-ifb-title{font-size: 20px;}.uagb-block-af7bb653 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-ebef70d3{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-ebef70d3 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 5px;}.wp-block-uagb-container.uagb-block-ebef70d3{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 20px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);align-items: flex-start;justify-content: flex-start;row-gap: 5px;}.uagb-block-da07b720 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-da07b720 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-da07b720 .uagb-ifb-title{font-size: 20px;}.uagb-block-da07b720 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5c0bd371{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5c0bd371 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 20px;}.wp-block-uagb-container.uagb-block-5c0bd371{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;align-items: flex-start;justify-content: flex-start;row-gap: 20px;}.uagb-block-e7f06968 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e7f06968 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e7f06968 .uagb-ifb-title{font-size: 20px;}.uagb-block-e7f06968 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__source-image{width: 19px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 19px;height: 19px;font-size: 19px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap {padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__wrap{display: flex;flex-direction: row;justify-content: flex-start;-webkit-box-pack: flex-start;-ms-flex-pack: flex-start;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__label{text-align: left;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 10px;margin-right: 10px;display: inline-flex;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child{margin-left: 0;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7dfed97e{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7dfed97e > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;flex-wrap: nowrap;column-gap: 40px;}.wp-block-uagb-container.uagb-block-7dfed97e{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;column-gap: 40px;}.wp-block-uagb-container.uagb-block-7dfed97e.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-7dfed97e.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;} .uagb-block-e1c989be .uagb-google-map__iframe{height: 500px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-d0cb7be2{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d0cb7be2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 30px;}.wp-block-uagb-container.uagb-block-d0cb7be2{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;flex-direction: column;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 30px;}.wp-block-uagb-container.uagb-block-d0cb7be2.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-d0cb7be2.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2 .uagb-heading-text{margin-bottom: 10px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9ed5e6d4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9ed5e6d4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9ed5e6d4{padding-top: 150px;padding-bottom: 80px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-9ed5e6d4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-d5b134cc .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d5b134cc .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d5b134cc .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-d5b134cc.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d5b134cc .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-d5b134cc.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5504678b{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5504678b > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;flex-wrap: wrap;row-gap: 40px;}.wp-block-uagb-container.uagb-block-5504678b{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 40px;order: initial;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-251cd539{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-251cd539 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-251cd539{padding-top: 0px;padding-bottom: 40px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 1px;border-style: solid;border-color: var(--ast-global-color-6);flex-wrap: wrap;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title{font-size: 20px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c9fbc81d{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c9fbc81d > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 5px;}.wp-block-uagb-container.uagb-block-c9fbc81d{padding-top: 0px;padding-bottom: 40px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 5px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 1px;border-style: solid;border-color: var(--ast-global-color-6);flex-wrap: wrap;}.uagb-block-af7bb653 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-af7bb653 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-af7bb653 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-af7bb653 .uagb-ifb-title{font-size: 20px;}.uagb-block-af7bb653 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-af7bb653.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-ebef70d3{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-ebef70d3 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 5px;}.wp-block-uagb-container.uagb-block-ebef70d3{padding-top: 0px;padding-bottom: 40px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 5px;order: initial;border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 1px;border-style: solid;border-color: var(--ast-global-color-6);flex-wrap: wrap;}.uagb-block-da07b720 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-da07b720 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-da07b720 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-da07b720 .uagb-ifb-title{font-size: 20px;}.uagb-block-da07b720 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-da07b720.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-da07b720.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5c0bd371{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5c0bd371 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 20px;}.wp-block-uagb-container.uagb-block-5c0bd371{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 20px;order: initial;flex-wrap: wrap;}.uagb-block-e7f06968 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e7f06968 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-e7f06968 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e7f06968 .uagb-ifb-title{font-size: 20px;}.uagb-block-e7f06968 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-e7f06968.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__source-image{width: 20px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__label{text-align: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg{width: 20px;height: 20px;font-size: 20px;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap{padding: 0px;border-width: 0px;align-self: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7 .uagb-icon-list__wrap{display: flex;flex-direction: row;justify-content: center;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child{margin-left: 10px;margin-right: 10px;display: inline-flex;}.wp-block-uagb-icon-list.uagb-block-64139ed7.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child{margin-left: 0;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7dfed97e{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7dfed97e > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column-reverse;align-items: stretch;flex-wrap: wrap;row-gap: 55px;}.wp-block-uagb-container.uagb-block-7dfed97e{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 55px;order: initial;background-color: var(--ast-global-color-4);;}.wp-block-uagb-container.uagb-block-7dfed97e.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-7dfed97e.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;} .uagb-block-e1c989be .uagb-google-map__iframe{height: 350px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-d0cb7be2{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-d0cb7be2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;flex-wrap: nowrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-d0cb7be2{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;flex-direction: column;flex-wrap: nowrap;}.wp-block-uagb-container.uagb-block-d0cb7be2.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap){width: 100%;}.wp-block-uagb-container.uagb-block-d0cb7be2.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox){width: 100%;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-f35113b2 .uagb-heading-text{margin-bottom: 10px;}}";s:2:"js";s:0:"";s:18:"current_block_list";a:14:{i:0;s:14:"uagb/container";i:1;s:13:"uagb/info-box";i:2;s:14:"uagb/icon-list";i:3;s:20:"uagb/icon-list-child";i:5;s:15:"uagb/google-map";i:7;s:21:"uagb/advanced-heading";i:8;s:14:"core/shortcode";i:9;s:11:"core/search";i:10;s:10:"core/group";i:11;s:12:"core/heading";i:12;s:17:"core/latest-posts";i:13;s:20:"core/latest-comments";i:14;s:13:"core/archives";i:15;s:15:"core/categories";}s:8:"uag_flag";b:1;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}');
INSERT INTO `wp8u_postmeta` VALUES
(619, 298, '_uag_page_assets', 'a:9:{s:3:"css";s:0:"";s:2:"js";s:0:"";s:18:"current_block_list";a:7:{i:0;s:11:"core/search";i:1;s:10:"core/group";i:2;s:12:"core/heading";i:3;s:17:"core/latest-posts";i:4;s:20:"core/latest-comments";i:5;s:13:"core/archives";i:6;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(620, 226, '_edit_lock', '1763191508:1'),
(624, 467, 'footnotes', ''),
(625, 3, 'surerank_seo_checks', 'a:13:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"success";s:7:"message";s:38:"Page contains at least one subheading.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:27:"No links found on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(626, 3, 'surerank_seo_checks_last_updated', '1763191523'),
(627, 2, 'surerank_seo_checks', 'a:14:{s:14:"h2_subheadings";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:42:"The page does not contain any subheadings.";s:4:"type";s:4:"page";}s:13:"media_present";a:3:{s:6:"status";s:7:"warning";s:7:"message";s:39:"No images or videos found on this page.";s:4:"type";s:4:"page";}s:13:"links_present";a:3:{s:6:"status";s:7:"success";s:7:"message";s:30:"Links are present on the page.";s:4:"type";s:4:"page";}s:10:"url_length";a:3:{s:6:"status";s:7:"success";s:7:"message";s:35:"Page URL is short and SEO-friendly.";s:4:"type";s:4:"page";}s:19:"search_engine_title";a:3:{s:6:"status";s:7:"success";s:7:"message";s:55:"Search engine title is present and under 60 characters.";s:4:"type";s:4:"page";}s:25:"search_engine_description";a:3:{s:6:"status";s:7:"success";s:7:"message";s:62:"Search engine description is present and under 160 characters.";s:4:"type";s:4:"page";}s:13:"canonical_url";a:3:{s:6:"status";s:7:"success";s:7:"message";s:37:"Canonical tag is present on the page.";s:4:"type";s:4:"page";}s:9:"all_links";a:1:{i:0;s:42:"https://novationinteriors.com/wp/wp-admin/";}s:15:"open_graph_tags";a:3:{s:6:"status";s:7:"success";s:7:"message";s:40:"Open Graph tags are present on the page.";s:4:"type";s:4:"page";}s:16:"keyword_in_title";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:38:"No focus keyword set to analyze title.";s:4:"type";s:7:"keyword";}s:22:"keyword_in_description";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:49:"No focus keyword set to analyze meta description.";s:4:"type";s:7:"keyword";}s:14:"keyword_in_url";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:36:"No focus keyword set to analyze URL.";s:4:"type";s:7:"keyword";}s:18:"keyword_in_content";a:3:{s:6:"status";s:10:"suggestion";s:7:"message";s:40:"No focus keyword set to analyze content.";s:4:"type";s:7:"keyword";}s:12:"broken_links";a:2:{s:6:"status";s:7:"success";s:7:"message";s:34:"No broken links found on the page.";}}'),
(628, 2, 'surerank_seo_checks_last_updated', '1763191524'),
(629, 226, '_uag_page_assets', 'a:9:{s:3:"css";s:280764:".wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b684870f .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f{box-shadow: 0px 0px #00000070 ;padding-top: 120px;padding-bottom: 120px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b684870f::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-f83a47d8 .uagb-ifb-icon svg{fill: #333;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 4%;margin-top: 0%;margin-left: 12%;margin-right: 12%;}.uagb-block-f83a47d8 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-b684870f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b684870f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-b684870f{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-b684870f::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-f83a47d8 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f83a47d8 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f83a47d8 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-f83a47d8.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f83a47d8 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-f83a47d8.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}\n.uagb-ifb-content>svg *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{-webkit-align-self:self-start;align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir="rtl"] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir="rtl"] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}\n.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}\n.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:inline-flex;width:100%}.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}@media (max-width: 976px){.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}@media (max-width: 767px){.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}\n.uagb-buttons__outer-wrap .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center;transition:box-shadow 0.2s ease}.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}\n.wp-block-uagb-counter .wp-block-uagb-counter__icon,.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap{display:inline-block;line-height:0}.wp-block-uagb-counter--number .wp-block-uagb-counter__number{font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--number .wp-block-uagb-counter__icon{margin-bottom:10px}.wp-block-uagb-counter--bars{display:flex;flex-direction:column}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{width:100%;background-color:#eaeaea}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{width:0%;min-height:5px;text-align:right;line-height:1;white-space:nowrap;overflow:hidden;background:#007cba;display:flex;justify-content:flex-end;align-items:center}.rtl .wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{flex-direction:row-reverse;justify-content:flex-start}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number>:last-child{margin-right:5px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__title{margin-top:15px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__number{color:#fff;padding-top:5px;padding-bottom:5px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{position:relative;display:inline-block;width:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container .wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg{pointer-events:none}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg{transform:rotate(-90deg);width:100%;height:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg circle{stroke:#eaeaea;stroke-width:1em;fill:transparent}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg .uagb-counter-circle__progress{stroke:#007cba}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container__content{position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;flex-direction:column;z-index:1}.wp-block-uagb-counter--circle .wp-block-uagb-counter__number{margin-top:5px;font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--circle .wp-block-uagb-counter__title{margin-top:5px}.wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter__title{margin-top:10px;margin-bottom:17px;font-size:16px}body[class*="astra"] .wp-block-uagb-counter__title,body[class*="astra"] .wp-block-uagb-counter__number{line-height:normal}\n.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}\n.wp-block-uagb-container.uagb-block-33914ddc .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-33914ddc .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-33914ddc .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-33914ddc .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-33914ddc .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-33914ddc{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-33914ddc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 900px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-33914ddc{box-shadow: 0px 0px #00000070 ;padding-top: 220px;padding-bottom: 140px;padding-left: 40px;padding-right: 40px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg);background-clip: padding-box;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-33914ddc::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-32540a6c .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-32540a6c .uagb-ifb-icon svg{fill: #333;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-32540a6c .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-32540a6c .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-32540a6c .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-32540a6c .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 4%;margin-top: 0%;margin-left: 15%;margin-right: 15%;}.uagb-block-32540a6c .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-32540a6c .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-32540a6c .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-32540a6c .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-32540a6c .uagb-infobox__content-wrap{text-align: center;}.uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-32540a6c .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-32540a6c .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-5b740152 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5b740152 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5b740152 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-5b740152 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-5b740152 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5b740152{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5b740152 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-5b740152{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;background-color: var(--ast-global-color-4);;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-590aa15a .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-590aa15a .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-590aa15a .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-590aa15a .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-590aa15a .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-590aa15a{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-590aa15a > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-590aa15a{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-2359313e .uagb-ifb-icon svg{fill: #333;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-2359313e .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-2359313e .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 20px;}.uagb-block-2359313e .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-2359313e .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-2359313e .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-infobox__content-wrap{text-align: left;}.uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-2359313e .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-6ec428b1 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6ec428b1 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6ec428b1 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6ec428b1 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6ec428b1 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6ec428b1{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6ec428b1 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-6ec428b1{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 40px;column-gap: 0px;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91 .uagb-heading-text{margin-bottom: 15px;}.uagb-block-dce11512.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap {gap: 10px;}.uagb-block-dce11512.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-button__wrapper .uagb-buttons-repeater.wp-block-button__link{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-buttons-repeater .uagb-button__icon > svg{width: 15px;height: 15px;fill: var(--ast-global-color-0);}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-buttons-repeater:hover .uagb-button__icon > svg{fill: var(--ast-global-color-4);}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-buttons-repeater:focus .uagb-button__icon > svg{fill: var(--ast-global-color-4);}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-buttons-repeater .uagb-button__icon-position-after{margin-left: 8px;}.wp-block-uagb-buttons .uagb-block-dff7d825 .uagb-buttons-repeater .uagb-button__icon-position-before{margin-right: 8px;}.wp-block-uagb-container.uagb-block-6524a66f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6524a66f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6524a66f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6524a66f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6524a66f .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6524a66f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6524a66f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 60px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-6524a66f{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 0px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 60px;column-gap: 0px;}.uagb-block-99aa96b3 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-99aa96b3 .uagb-ifb-icon svg{fill: #333;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-99aa96b3 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-99aa96b3 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-99aa96b3 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-99aa96b3 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0%;margin-top: 0%;margin-left: 0%;margin-right: 0%;}.uagb-block-99aa96b3 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-99aa96b3 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-99aa96b3 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-99aa96b3 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-99aa96b3 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-99aa96b3.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0%;padding-right: 22%;padding-bottom: 0%;padding-left: 22%;}.uagb-block-99aa96b3.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0%;padding-right: 22%;padding-bottom: 0%;padding-left: 22%;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-99aa96b3 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-99aa96b3 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-a0a42333 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a0a42333 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a0a42333 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a0a42333 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a0a42333 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a0a42333{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a0a42333 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-block-a0a42333{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 40px;}.wp-block-uagb-container.uagb-block-9abd22a4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9abd22a4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9abd22a4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9abd22a4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9abd22a4 .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9abd22a4{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9abd22a4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9abd22a4{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg);background-clip: padding-box;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9abd22a4::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-heading-text{color: #ffffff;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading .uagb-separator{border-top-style: solid;border-top-width: 3px;width: 60px;border-color: var(--ast-global-color-0);margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-769a552b .uagb-heading-text{margin-bottom: 0px;}.uagb-block-d59c5b69 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-d59c5b69 .uagb-ifb-icon svg{fill: #333;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d59c5b69 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-d59c5b69 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-d59c5b69 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-d59c5b69 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 5px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-d59c5b69 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-d59c5b69 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-d59c5b69 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d59c5b69 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-d59c5b69 .uagb-infobox-cta-link{text-transform: uppercase;}[dir=rtl] .uagb-block-d59c5b69 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-032d95fc .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-032d95fc .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-032d95fc .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-032d95fc .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-032d95fc .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-032d95fc{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-032d95fc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-032d95fc{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg);background-clip: padding-box;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-032d95fc::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-heading-text{color: #ffffff;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading .uagb-separator{border-top-style: solid;border-top-width: 3px;width: 60px;border-color: var(--ast-global-color-0);margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc .uagb-heading-text{margin-bottom: 0px;}.uagb-block-ef01bad9 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-ef01bad9 .uagb-ifb-icon svg{fill: #333;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ef01bad9 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ef01bad9 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ef01bad9 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-ef01bad9 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 5px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-ef01bad9 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-ef01bad9 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-ef01bad9 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ef01bad9 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-ef01bad9 .uagb-infobox-cta-link{text-transform: uppercase;}[dir=rtl] .uagb-block-ef01bad9 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-9c8fa577 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9c8fa577 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9c8fa577 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9c8fa577 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9c8fa577 .uagb-container__video-wrap video{opacity: 0.3;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9c8fa577{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9c8fa577 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9c8fa577{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background-repeat: no-repeat;background-position: 50% 50%;background-size: cover;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg);background-clip: padding-box;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 80px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-9c8fa577::before{content: "";position: absolute;pointer-events: none;top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;border-color: inherit;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-heading-text{color: #ffffff;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading .uagb-separator{border-top-style: solid;border-top-width: 3px;width: 60px;border-color: var(--ast-global-color-0);margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0 .uagb-heading-text{margin-bottom: 0px;}.uagb-block-0bb78aa6 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-0bb78aa6 .uagb-ifb-icon svg{fill: #333;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-0bb78aa6 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-0bb78aa6 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-0bb78aa6 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-0bb78aa6 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 5px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-title{color: #ffffff;margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-desc{color: #ffffff;margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-0bb78aa6 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-0bb78aa6 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-0bb78aa6 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-0bb78aa6 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-0bb78aa6 .uagb-infobox-cta-link{text-transform: uppercase;}[dir=rtl] .uagb-block-0bb78aa6 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-23d0646f .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-23d0646f .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-23d0646f .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-23d0646f .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-23d0646f .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-23d0646f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-23d0646f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-23d0646f{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-7453ae49 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7453ae49 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7453ae49 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7453ae49 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7453ae49 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7453ae49{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7453ae49 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-7453ae49{box-shadow: 0px 0px #00000070 ;padding-top: 20px;padding-bottom: 20px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter{text-align: center;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{fill: #4B4F58;width: 30px;height: 30px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__title{font-style: normal;text-transform: uppercase;color: var(--ast-global-color-2);margin-top: 10px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number{font-family: "PT Serif";font-style: normal;font-weight: 500;font-size: 50px;color: var(--ast-global-color-2);margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{max-width: 230px;}.uagb-block-7a505c88.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle{stroke-width: 8px;stroke: #eaeaea;r: 111px;cx: 115px;cy: 115px;}.uagb-block-7a505c88.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress{stroke: #007cba;stroke-dasharray: 697.43px;stroke-dashoffset: 697.43px;}.uagb-block-7a505c88.wp-block-uagb-counter--bars{flex-direction: column;}.uagb-block-7a505c88.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{background: #eaeaea;}.uagb-block-7a505c88.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{background: #007cba;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-container.uagb-block-a2d43849 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a2d43849 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a2d43849 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-a2d43849 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-a2d43849 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a2d43849{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a2d43849 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-a2d43849{box-shadow: 0px 0px #00000070 ;padding-top: 20px;padding-bottom: 20px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-width: 0px;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-ead41114.wp-block-uagb-counter{text-align: center;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{fill: #4B4F58;width: 30px;height: 30px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__title{font-style: normal;text-transform: uppercase;color: var(--ast-global-color-2);margin-top: 10px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number{font-family: "PT Serif";font-style: normal;font-weight: 500;font-size: 50px;color: var(--ast-global-color-2);margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.uagb-block-ead41114.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{max-width: 230px;}.uagb-block-ead41114.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle{stroke-width: 8px;stroke: #eaeaea;r: 111px;cx: 115px;cy: 115px;}.uagb-block-ead41114.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress{stroke: #007cba;stroke-dasharray: 697.43px;stroke-dashoffset: 697.43px;}.uagb-block-ead41114.wp-block-uagb-counter--bars{flex-direction: column;}.uagb-block-ead41114.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{background: #eaeaea;}.uagb-block-ead41114.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{background: #007cba;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-container.uagb-block-097966ea .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-097966ea .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-097966ea .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-097966ea .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-097966ea .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-097966ea{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-097966ea > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-097966ea{box-shadow: 0px 0px #00000070 ;padding-top: 20px;padding-bottom: 20px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter{text-align: center;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{fill: #4B4F58;width: 30px;height: 30px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__title{font-style: normal;text-transform: uppercase;color: var(--ast-global-color-2);margin-top: 10px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number{font-family: "PT Serif";font-style: normal;font-weight: 500;font-size: 50px;color: var(--ast-global-color-2);margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{max-width: 230px;}.uagb-block-eb69c34f.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle{stroke-width: 8px;stroke: #eaeaea;r: 111px;cx: 115px;cy: 115px;}.uagb-block-eb69c34f.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress{stroke: #007cba;stroke-dasharray: 697.43px;stroke-dashoffset: 697.43px;}.uagb-block-eb69c34f.wp-block-uagb-counter--bars{flex-direction: column;}.uagb-block-eb69c34f.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{background: #eaeaea;}.uagb-block-eb69c34f.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{background: #007cba;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-container.uagb-block-bd62307c .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-bd62307c .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-bd62307c .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-bd62307c .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-bd62307c .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-bd62307c{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-bd62307c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-bd62307c{box-shadow: 0px 0px #00000070 ;padding-top: 20px;padding-bottom: 20px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-top-width: 0px;border-left-width: 1px;border-right-width: 0px;border-bottom-width: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-style: solid;border-color: var(--ast-global-color-6);flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter{text-align: center;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{fill: #4B4F58;width: 30px;height: 30px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__title{font-style: normal;text-transform: uppercase;color: var(--ast-global-color-2);margin-top: 10px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number{font-family: "PT Serif";font-style: normal;font-weight: 500;font-size: 50px;color: var(--ast-global-color-2);margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{max-width: 230px;}.uagb-block-5a657ec5.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle{stroke-width: 8px;stroke: #eaeaea;r: 111px;cx: 115px;cy: 115px;}.uagb-block-5a657ec5.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress{stroke: #007cba;stroke-dasharray: 697.43px;stroke-dashoffset: 697.43px;}.uagb-block-5a657ec5.wp-block-uagb-counter--bars{flex-direction: column;}.uagb-block-5a657ec5.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{background: #eaeaea;}.uagb-block-5a657ec5.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{background: #007cba;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-container.uagb-block-c61f515b .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c61f515b .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c61f515b .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c61f515b .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c61f515b .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c61f515b{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-c61f515b{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;overflow: visible;order: initial;border-color: inherit;background-repeat: no-repeat;background-position: 0% 50%;background-size: 56em;background-attachment: scroll;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg);background-clip: padding-box;flex-direction: column;align-items: flex-end;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b88a5352 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b88a5352 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b88a5352 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-b88a5352 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-b88a5352 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b88a5352{max-width: 40%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b88a5352 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-b88a5352{box-shadow: 0px 0px #00000070 ;padding-top: 80px;padding-bottom: 80px;padding-left: 80px;padding-right: 80px;margin-top: 0% !important;margin-bottom: 0% !important;margin-left: 0%;margin-right: 15%;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-089a5fbd .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-089a5fbd .uagb-ifb-icon svg{fill: #333;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-089a5fbd .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-089a5fbd .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-089a5fbd .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-089a5fbd .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 30px;}.uagb-block-089a5fbd .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-089a5fbd .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-089a5fbd .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-089a5fbd .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-089a5fbd .uagb-infobox__content-wrap{text-align: left;}.uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-089a5fbd .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-089a5fbd .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-7e6769fe .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7e6769fe .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7e6769fe .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-7e6769fe .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-7e6769fe .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7e6769fe{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7e6769fe > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 60px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-7e6769fe{box-shadow: 0px 0px #00000070 ;padding-top: 100px;padding-bottom: 0px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 60px;column-gap: 0px;}.uagb-block-df560f93 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-df560f93 .uagb-ifb-icon svg{fill: #333;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-df560f93 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-df560f93 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-df560f93 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-df560f93 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0%;margin-top: 0%;margin-left: 22%;margin-right: 22%;}.uagb-block-df560f93 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-df560f93 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-df560f93 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-df560f93 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-df560f93 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-df560f93.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0%;padding-right: 0%;padding-bottom: 0%;padding-left: 0%;}.uagb-block-df560f93.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0%;padding-right: 0%;padding-bottom: 0%;padding-left: 0%;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-df560f93 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-df560f93 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-6700b253 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6700b253 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6700b253 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-6700b253 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-6700b253 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6700b253{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6700b253 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-6700b253{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-37d6e4c7 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-37d6e4c7 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-37d6e4c7 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-37d6e4c7 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-37d6e4c7 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-37d6e4c7{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-37d6e4c7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-37d6e4c7{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 60px;border-bottom-left-radius: 60px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-f9b5cf3a .uagb-ifb-icon svg{fill: #333;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f9b5cf3a .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-f9b5cf3a .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-infobox .uagb-ifb-image-content img{border-radius: 100px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-f9b5cf3a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-2);margin-bottom: 30px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-f9b5cf3a.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 0px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-f9b5cf3a.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-f9b5cf3a .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-f9b5cf3a .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-image-content > img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-image-content > img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image > img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image > img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f9b5cf3a .uagb-ifb-title{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}.uagb-block-f9b5cf3a .uagb-ifb-title-prefix{font-weight: 400;font-size: 18px;}[dir=rtl] .uagb-block-f9b5cf3a .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox-left{text-align: right;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox-right{text-align: left;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-80ef6ada .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-80ef6ada .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-80ef6ada .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-80ef6ada .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-80ef6ada .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-80ef6ada{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-80ef6ada > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-80ef6ada{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 60px;border-bottom-left-radius: 60px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-ac698830 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-ac698830 .uagb-ifb-icon svg{fill: #333;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ac698830 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-ac698830 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-infobox .uagb-ifb-image-content img{border-radius: 100px;}.uagb-block-ac698830.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-ac698830 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-2);margin-bottom: 30px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-ac698830.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 0px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-ac698830.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ac698830 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-ac698830 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-ac698830 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-ac698830 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-image-content > img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-image-content > img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image > img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image > img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-ac698830 .uagb-ifb-title{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}.uagb-block-ac698830 .uagb-ifb-title-prefix{font-weight: 400;font-size: 18px;}[dir=rtl] .uagb-block-ac698830 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox-left{text-align: right;}[dir=rtl] .uagb-block-ac698830.uagb-infobox-right{text-align: left;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-2257c642 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-2257c642 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-2257c642 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-2257c642 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-2257c642 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2257c642{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2257c642 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-2257c642{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: stretch;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 60px;}.wp-block-uagb-container.uagb-block-45ad2bf2 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-45ad2bf2 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-45ad2bf2 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-45ad2bf2 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-45ad2bf2 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-45ad2bf2{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-45ad2bf2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-45ad2bf2{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 60px;border-bottom-left-radius: 60px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-a3e49a74 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-a3e49a74 .uagb-ifb-icon svg{fill: #333;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-a3e49a74 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-a3e49a74 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-infobox .uagb-ifb-image-content img{border-radius: 100px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-a3e49a74 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-2);margin-bottom: 30px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-a3e49a74.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 0px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-a3e49a74.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-a3e49a74 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-a3e49a74 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-a3e49a74 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-a3e49a74 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-image-content > img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-image-content > img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image > img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image > img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-a3e49a74 .uagb-ifb-title{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}.uagb-block-a3e49a74 .uagb-ifb-title-prefix{font-weight: 400;font-size: 18px;}[dir=rtl] .uagb-block-a3e49a74 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox-left{text-align: right;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox-right{text-align: left;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-c7e41ea7 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c7e41ea7 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c7e41ea7 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-c7e41ea7 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-c7e41ea7 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c7e41ea7{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c7e41ea7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-c7e41ea7{box-shadow: 0px 0px #00000070 ;padding-top: 60px;padding-bottom: 60px;padding-left: 50px;padding-right: 50px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-top-left-radius: 0px;border-top-right-radius: 60px;border-bottom-left-radius: 60px;border-bottom-right-radius: 0px;border-color: inherit;background-color: var(--ast-global-color-4);;flex-direction: column;align-items: center;justify-content: flex-start;flex-wrap: nowrap;row-gap: 0px;column-gap: 0px;}.uagb-block-4744f425 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-4744f425 .uagb-ifb-icon svg{fill: #333;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4744f425 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4744f425 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-infobox .uagb-ifb-image-content img{border-radius: 100px;}.uagb-block-4744f425.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 100px;}.uagb-block-4744f425 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-2);margin-bottom: 30px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-4744f425.wp-block-uagb-info-box .uagb-ifb-title{color: var(--ast-global-color-2);margin-bottom: 0px;margin-top: 0px;margin-left: 30px;margin-right: 0px;}.uagb-block-4744f425.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4744f425 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-4744f425 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-4744f425 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-4744f425 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-image-content > img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-image-content > img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image > img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image > img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4744f425 .uagb-ifb-title{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}.uagb-block-4744f425 .uagb-ifb-title-prefix{font-weight: 400;font-size: 18px;}[dir=rtl] .uagb-block-4744f425 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox-left{text-align: right;}[dir=rtl] .uagb-block-4744f425.uagb-infobox-right{text-align: left;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-block-2f326697 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-2f326697 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-2f326697 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-2f326697 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-2f326697 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2f326697{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2f326697 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 60px;column-gap: 0px;}.wp-block-uagb-container.uagb-block-2f326697{box-shadow: 0px 0px #00000070 ;padding-top: 120px;padding-bottom: 100px;padding-left: 40px;padding-right: 40px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;row-gap: 60px;column-gap: 0px;}.uagb-block-76ceb716 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-76ceb716 .uagb-ifb-icon svg{fill: #333;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-76ceb716 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-76ceb716 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-76ceb716 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-76ceb716 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0%;margin-top: 0%;margin-left: 22%;margin-right: 22%;}.uagb-block-76ceb716 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-76ceb716 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-76ceb716 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-76ceb716 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-76ceb716 .uagb-infobox__content-wrap{text-align: center;}.uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-76ceb716.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0%;padding-right: 0%;padding-bottom: 0%;padding-left: 0%;}.uagb-block-76ceb716.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0%;padding-right: 0%;padding-bottom: 0%;padding-left: 0%;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-76ceb716 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-76ceb716 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap{text-align: center;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-3c7a7974 .wp-block-uagb-image__figure{align-items: flex-start;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-default figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure figcaption{font-style: normal;align-self: center;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay figure img{box-shadow: 0px 0px 0 #00000070;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 0.2;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 80px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner{left: 15px;right: 15px;top: 15px;bottom: 15px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{font-style: normal;color: #fff;opacity: 1;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a{color: #fff;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 0;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity: 1;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width: 30%;border-top-width: 2px;border-top-color: #fff;opacity: 0;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 1200px;height: 450px;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity: 1;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{opacity: 1;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-default figure:hover img{box-shadow: 0px 0px 0 #00000070;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay figure:hover img{box-shadow: 0px 0px 0 #00000070;}.wp-block-uagb-container.uagb-block-84e181c4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-84e181c4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-84e181c4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-84e181c4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-84e181c4 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-84e181c4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-84e181c4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.wp-block-uagb-container.uagb-block-84e181c4{box-shadow: 0px 0px #00000070 ;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;overflow: visible;order: initial;border-color: inherit;flex-direction: row;align-items: flex-start;justify-content: center;flex-wrap: nowrap;row-gap: 0px;column-gap: 80px;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-4bbc11b0 .uagb-ifb-icon svg{fill: #333;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-e039f349 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-e039f349 .uagb-ifb-icon svg{fill: #333;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e039f349 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-e039f349 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-e039f349 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-e039f349 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e039f349.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e039f349.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e039f349 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-e039f349 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-e039f349 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-e039f349 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e039f349 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e039f349 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-e039f349 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-8ff54d31 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;color: #333;}.uagb-block-8ff54d31 .uagb-ifb-icon svg{fill: #333;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-icon-wrap svg{line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-8ff54d31 .uagb-iconbox-icon-wrap{margin: auto;display: inline-flex;align-items: center;justify-content: center;box-sizing: content-box;width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-left-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-right-title-image svg{width: 30px;line-height: 30px;font-size: 30px;color: #333;fill: #333;}.uagb-block-8ff54d31 .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-8ff54d31 .uagb-infobox .uagb-ifb-image-content img{border-radius: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;border-radius: 0px;}.uagb-block-8ff54d31 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{color: var(--ast-global-color-0);margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-8ff54d31.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-8ff54d31.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-8ff54d31 .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;margin-bottom: 0px;}.uagb-block-8ff54d31 .uagb-infobox__content-wrap .uagb-ifb-separator{width: 30%;border-top-width: 2px;border-top-color: #333;border-top-style: solid;}.uagb-block-8ff54d31 .uagb-ifb-align-icon-after{margin-left: 5px;}.uagb-block-8ff54d31 .uagb-ifb-align-icon-before{margin-right: 5px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content svg{box-sizing: content-box;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-8ff54d31 .uagb-infobox__content-wrap{text-align: left;}.uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-8ff54d31 .uagb-ifb-title-prefix{text-transform: uppercase;font-weight: 600;font-size: 16px;letter-spacing: 2px;}[dir=rtl] .uagb-block-8ff54d31 .uagb-iconbox-icon-wrap{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content > img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap{text-align: right;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-33914ddc{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-33914ddc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-33914ddc{padding-top: 140px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-33914ddc::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-32540a6c .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-32540a6c .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-32540a6c .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5b740152{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5b740152 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-block-5b740152{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;background-color: var(--ast-global-color-4);;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-590aa15a{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-590aa15a > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-590aa15a{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: flex-start;justify-content: flex-start;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6ec428b1{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6ec428b1 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-6ec428b1{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91 .uagb-heading-text{margin-bottom: 10px;}.uagb-block-dce11512.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.uagb-block-dce11512.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6524a66f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6524a66f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;row-gap: 40px;}.wp-block-uagb-container.uagb-block-6524a66f{padding-top: 80px;padding-bottom: 0px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;row-gap: 40px;}.uagb-block-99aa96b3 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-99aa96b3 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-99aa96b3.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 10px;padding-bottom: 0px;padding-left: 10px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 10px;padding-bottom: 0px;padding-left: 10px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-99aa96b3 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a0a42333{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a0a42333 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;row-gap: 0px;column-gap: 25px;}.wp-block-uagb-container.uagb-block-a0a42333{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: stretch;row-gap: 0px;column-gap: 25px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9abd22a4{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9abd22a4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-9abd22a4{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-9abd22a4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-769a552b .uagb-heading-text{margin-bottom: 0px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d59c5b69 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-032d95fc{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-032d95fc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-032d95fc{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-032d95fc::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc .uagb-heading-text{margin-bottom: 0px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ef01bad9 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9c8fa577{max-width: 33%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9c8fa577 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-9c8fa577{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;row-gap: 25px;}.wp-block-uagb-container.uagb-block-9c8fa577::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0 .uagb-heading-text{margin-bottom: 0px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-0bb78aa6 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-23d0646f{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-23d0646f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 0px;}.wp-block-uagb-container.uagb-block-23d0646f{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;column-gap: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7453ae49{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7453ae49 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-7453ae49{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;}.uagb-block-7a505c88.wp-block-uagb-counter{text-align: center;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__title{font-size: 14px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number{font-size: 35px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a2d43849{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a2d43849 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-a2d43849{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;border-style: solid;border-color: var(--ast-global-color-6);}.uagb-block-ead41114.wp-block-uagb-counter{text-align: center;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__title{font-size: 14px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number{font-size: 35px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-097966ea{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-097966ea > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-097966ea{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;}.uagb-block-eb69c34f.wp-block-uagb-counter{text-align: center;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__title{font-size: 14px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number{font-size: 35px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-bd62307c{max-width: 25%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-bd62307c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-bd62307c{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-style: solid;border-color: var(--ast-global-color-6);}.uagb-block-5a657ec5.wp-block-uagb-counter{text-align: center;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__title{font-size: 14px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number{font-size: 35px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c61f515b{width: 100%;}.wp-block-uagb-container.uagb-block-c61f515b{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;background-position: 0% 50%;background-size: 44em;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b88a5352{max-width: 55%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b88a5352 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-b88a5352{padding-top: 40px;padding-bottom: 40px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 80px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-089a5fbd .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-089a5fbd .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-089a5fbd .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7e6769fe{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7e6769fe > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;row-gap: 40px;}.wp-block-uagb-container.uagb-block-7e6769fe{padding-top: 80px;padding-bottom: 0px;padding-left: 32px;padding-right: 32px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;row-gap: 40px;}.uagb-block-df560f93 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-df560f93 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-df560f93 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6700b253{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6700b253 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-block-6700b253{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-37d6e4c7{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-37d6e4c7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-37d6e4c7{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-f9b5cf3a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f9b5cf3a.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f9b5cf3a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f9b5cf3a .uagb-ifb-title{font-size: 15px;}.uagb-block-f9b5cf3a .uagb-ifb-title-prefix{font-size: 17px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-80ef6ada{max-width: 50%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-80ef6ada > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;}.wp-block-uagb-container.uagb-block-80ef6ada{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;}.uagb-block-ac698830 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ac698830.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ac698830 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ac698830.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-ac698830 .uagb-ifb-title{font-size: 15px;}.uagb-block-ac698830 .uagb-ifb-title-prefix{font-size: 17px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2257c642{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2257c642 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-block-2257c642{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: stretch;column-gap: 40px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-45ad2bf2{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-45ad2bf2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-45ad2bf2{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;}.uagb-block-a3e49a74 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-a3e49a74.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-a3e49a74 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-a3e49a74 .uagb-ifb-title{font-size: 15px;}.uagb-block-a3e49a74 .uagb-ifb-title-prefix{font-size: 17px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c7e41ea7{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c7e41ea7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-c7e41ea7{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;}.uagb-block-4744f425 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4744f425.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4744f425 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4744f425.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4744f425 .uagb-ifb-title{font-size: 15px;}.uagb-block-4744f425 .uagb-ifb-title-prefix{font-size: 17px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2f326697{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2f326697 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;row-gap: 40px;}.wp-block-uagb-container.uagb-block-2f326697{padding-top: 80px;padding-bottom: 80px;padding-left: 32px;padding-right: 32px;margin-top: !important;margin-bottom: !important;order: initial;row-gap: 40px;}.uagb-block-76ceb716 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-76ceb716 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-76ceb716.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-76ceb716 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 1200px;height: 300px;}.uagb-block-3c7a7974.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-3c7a7974 .wp-block-uagb-image__figure{align-items: flex-start;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-84e181c4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-84e181c4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;column-gap: 30px;}.wp-block-uagb-container.uagb-block-84e181c4{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;align-items: flex-start;column-gap: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-e039f349 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-e039f349.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-e039f349.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e039f349 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e039f349 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-8ff54d31 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-8ff54d31.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-8ff54d31.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-8ff54d31 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-8ff54d31 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-33914ddc{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-33914ddc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-33914ddc{padding-top: 150px;padding-bottom: 80px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg);background-clip: padding-box;}.wp-block-uagb-container.uagb-block-33914ddc::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);background: var(--ast-global-color-7);opacity: 0.7;}.uagb-block-32540a6c .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-32540a6c.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-32540a6c .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-32540a6c .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-32540a6c .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-32540a6c.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-5b740152{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5b740152 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;flex-wrap: wrap;row-gap: 20px;}.wp-block-uagb-container.uagb-block-5b740152{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 20px;order: initial;background-color: var(--ast-global-color-4);;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-590aa15a{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-590aa15a > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-590aa15a{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;flex-wrap: wrap;}.uagb-block-2359313e .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-2359313e .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-2359313e .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-2359313e .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-2359313e.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-2359313e.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6ec428b1{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6ec428b1 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 25px;}.wp-block-uagb-container.uagb-block-6ec428b1{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 25px;order: initial;flex-wrap: wrap;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-e30f7b91 .uagb-heading-text{margin-bottom: 10px;}.uagb-block-dce11512.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.uagb-block-dce11512.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6524a66f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6524a66f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 40px;}.wp-block-uagb-container.uagb-block-6524a66f{padding-top: 64px;padding-bottom: 0px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 40px;order: initial;}.uagb-block-99aa96b3 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-99aa96b3 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-99aa96b3 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-99aa96b3.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 10px;padding-bottom: 0px;padding-left: 10px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 10px;padding-bottom: 0px;padding-left: 10px;}.uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-99aa96b3 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-99aa96b3.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a0a42333{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a0a42333 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;flex-wrap: wrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-a0a42333{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;align-items: stretch;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9abd22a4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9abd22a4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;row-gap: 10px;}.wp-block-uagb-container.uagb-block-9abd22a4{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;row-gap: 10px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9abd22a4::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-769a552b.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-769a552b .uagb-heading-text{margin-bottom: 0px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-d59c5b69 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-d59c5b69 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-d59c5b69.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-032d95fc{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-032d95fc > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;row-gap: 10px;}.wp-block-uagb-container.uagb-block-032d95fc{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;row-gap: 10px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-032d95fc::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-728f4cfc .uagb-heading-text{margin-bottom: 0px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ef01bad9 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-ef01bad9 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-ef01bad9.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9c8fa577{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9c8fa577 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;row-gap: 10px;}.wp-block-uagb-container.uagb-block-9c8fa577{padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;margin-top: !important;margin-bottom: !important;row-gap: 10px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg);background-clip: padding-box;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9c8fa577::before{top: -0px;left: -0px;width: calc(100% + 0px + 0px);height: calc(100% + 0px + 0px);border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background: var(--ast-global-color-7);opacity: 0.7;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0.wp-block-uagb-advanced-heading {text-align: left;}.wp-block-uagb-advanced-heading.uagb-block-cd560cd0 .uagb-heading-text{margin-bottom: 0px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 5px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-0bb78aa6 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-0bb78aa6 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-0bb78aa6.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-23d0646f{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-23d0646f > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;flex-wrap: wrap;row-gap: 0px;}.wp-block-uagb-container.uagb-block-23d0646f{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 0px;order: initial;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7453ae49{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7453ae49 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-7453ae49{padding-top: 0px;padding-bottom: 30px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-7a505c88.wp-block-uagb-counter{text-align: center;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-7a505c88.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-a2d43849{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-a2d43849 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-a2d43849{padding-top: 30px;padding-bottom: 30px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;border-top-width: 1px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 1px;border-style: solid;border-color: var(--ast-global-color-6);justify-content: flex-start;flex-wrap: wrap;}.uagb-block-ead41114.wp-block-uagb-counter{text-align: center;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-ead41114.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-097966ea{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-097966ea > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-097966ea{padding-top: 30px;padding-bottom: 30px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;order: initial;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-eb69c34f.wp-block-uagb-counter{text-align: center;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-eb69c34f.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-bd62307c{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-bd62307c > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-bd62307c{padding-top: 30px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-width: 1px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-style: solid;border-color: var(--ast-global-color-6);justify-content: flex-start;flex-wrap: wrap;}.uagb-block-5a657ec5.wp-block-uagb-counter{text-align: center;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__icon svg{width: 30px;height: 30px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix{margin-right: 0px;}.uagb-block-5a657ec5.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix{margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c61f515b{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-block-c61f515b{min-height: 700px;padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;background-position: 50% 0%;background-size: 35em;background-image: url(https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg);background-clip: padding-box;justify-content: flex-end;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-b88a5352{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-b88a5352 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-b88a5352{padding-top: 64px;padding-bottom: 64px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-089a5fbd .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-089a5fbd.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 25px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-089a5fbd .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-089a5fbd .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-089a5fbd .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-089a5fbd.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-7e6769fe{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-7e6769fe > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 45px;}.wp-block-uagb-container.uagb-block-7e6769fe{padding-top: 64px;padding-bottom: 0px;padding-left: 24px;padding-right: 24px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;row-gap: 45px;order: initial;}.uagb-block-df560f93 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-df560f93 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-df560f93 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-df560f93.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-df560f93 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-df560f93.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-df560f93.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-6700b253{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-6700b253 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;flex-wrap: wrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-6700b253{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;align-items: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-37d6e4c7{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-37d6e4c7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-37d6e4c7{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-f9b5cf3a .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-f9b5cf3a .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-f9b5cf3a .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-f9b5cf3a .uagb-ifb-title{font-size: 15px;}.uagb-block-f9b5cf3a .uagb-ifb-title-prefix{font-size: 16px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a .uagb-ifb-content > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-left-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a .uagb-ifb-content .uagb-ifb-right-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-f9b5cf3a.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-80ef6ada{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-80ef6ada > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-80ef6ada{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-ac698830 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-ifb-content > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-ac698830 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-ac698830 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-ac698830 .uagb-ifb-title{font-size: 15px;}.uagb-block-ac698830 .uagb-ifb-title-prefix{font-size: 16px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830 .uagb-ifb-content > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-left-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830 .uagb-ifb-content .uagb-ifb-right-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-ac698830.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2257c642{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2257c642 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: stretch;flex-wrap: wrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-2257c642{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;align-items: stretch;flex-wrap: wrap;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-45ad2bf2{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-45ad2bf2 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-45ad2bf2{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: !important;margin-bottom: !important;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-a3e49a74 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-a3e49a74 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-a3e49a74 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-a3e49a74 .uagb-ifb-title{font-size: 15px;}.uagb-block-a3e49a74 .uagb-ifb-title-prefix{font-size: 16px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74 .uagb-ifb-content > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-left-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74 .uagb-ifb-content .uagb-ifb-right-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-a3e49a74.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-c7e41ea7{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-c7e41ea7 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;justify-content: flex-start;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-c7e41ea7{padding-top: 30px;padding-bottom: 30px;padding-left: 30px;padding-right: 30px;margin-top: 0px !important;margin-bottom: 0px !important;margin-left: 0px;margin-right: 0px;order: initial;border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;background-color: var(--ast-global-color-4);;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-4744f425 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 15px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-ifb-content > svg{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap img{padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4744f425 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4744f425 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-image-content img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-image-content img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image img{width: 74px;}.uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image img{width: 74px;}.uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4744f425 .uagb-ifb-title{font-size: 15px;}.uagb-block-4744f425 .uagb-ifb-title-prefix{font-size: 16px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425 .uagb-ifb-content > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-left-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425 .uagb-ifb-content .uagb-ifb-right-title-image > svg{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap img{padding-right: 0px;padding-left: 0px;}[dir=rtl] .uagb-block-4744f425.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-2f326697{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-2f326697 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;row-gap: 40px;}.wp-block-uagb-container.uagb-block-2f326697{padding-top: 80px;padding-bottom: 80px;padding-left: 24px;padding-right: 24px;margin-top: !important;margin-bottom: !important;row-gap: 40px;order: initial;}.uagb-block-76ceb716 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.wp-block-uagb-info-box .uagb-ifb-desc{margin-bottom: 0px;margin-top: 0px;margin-left: 0px;margin-right: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-76ceb716 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-76ceb716 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}.uagb-block-76ceb716.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin){padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-76ceb716 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox-icon-above-title{text-align: center;}[dir=rtl] .uagb-block-76ceb716.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-default figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image--layout-overlay figure img{border-top-left-radius: 0px;border-top-right-radius: 50px;border-bottom-left-radius: 50px;border-bottom-right-radius: 0px;}.uagb-block-3c7a7974.wp-block-uagb-image .wp-block-uagb-image__figure img{object-fit: cover;width: 600px;height: 250px;}.uagb-block-3c7a7974.wp-block-uagb-image{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;text-align: left;justify-content: flex-start;align-self: flex-start;}.uagb-block-3c7a7974 .wp-block-uagb-image__figure{align-items: flex-start;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-84e181c4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-84e181c4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;row-gap: 35px;}.wp-block-uagb-container.uagb-block-84e181c4{padding-top: 0px;padding-bottom: 0px;padding-left: 0px;padding-right: 0px;margin-top: !important;margin-bottom: !important;row-gap: 35px;order: initial;align-items: flex-start;justify-content: flex-start;flex-wrap: wrap;}.uagb-block-4bbc11b0 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-4bbc11b0.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-4bbc11b0 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-4bbc11b0 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-4bbc11b0 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-4bbc11b0.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-e039f349 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-e039f349.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-e039f349 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-e039f349 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-e039f349 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-e039f349.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-e039f349.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}.uagb-block-8ff54d31 .uagb-ifb-title-wrap .uagb-ifb-title-prefix{margin-bottom: 10px;}.uagb-block-8ff54d31.wp-block-uagb-info-box .uagb-ifb-title{margin-bottom: 10px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg{width: 30px;height: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg{line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-left-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31 .uagb-ifb-content .uagb-ifb-right-title-image > svg{width: 30px;line-height: 30px;font-size: 30px;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-ifb-content img{box-sizing: content-box;}.uagb-block-8ff54d31 .uagb-ifb-icon{width: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-ifb-icon > span{font-size: 30px;width: 30px;line-height: 30px;}.uagb-block-8ff54d31 .uagb-iconbox-icon-wrap{width: 30px;height: 30px;line-height: 30px;}.uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: left;}.uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg {margin-left: 5px;}.uagb-block-8ff54d31 .uagb-ifb-title-prefix{font-size: 15px;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox-icon-above-title{text-align: right;}[dir=rtl] .uagb-block-8ff54d31.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg{margin-right: 5px;margin-left: 0px;}}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n";s:2:"js";s:1570:"document.addEventListener("DOMContentLoaded", function(){ window.addEventListener( ''load'', function() {\n UAGBButtonChild.init( ''.uagb-block-dff7d825'' );\n});\nwindow.addEventListener( ''load'', function() {\n UAGBCounter.init( ''.uagb-block-7a505c88'', {"layout":"number","heading":"Client Satisfaction","numberPrefix":"","numberSuffix":"%","startNumber":0,"endNumber":92,"totalNumber":100,"decimalPlaces":0,"animationDuration":1500,"thousandSeparator":",","circleSize":230,"circleStokeSize":8,"isFrontend":true} );\n});\nwindow.addEventListener( ''load'', function() {\n UAGBCounter.init( ''.uagb-block-ead41114'', {"layout":"number","heading":"Team Members","numberPrefix":"","numberSuffix":"+","startNumber":0,"endNumber":25,"totalNumber":100,"decimalPlaces":0,"animationDuration":1500,"thousandSeparator":",","circleSize":230,"circleStokeSize":8,"isFrontend":true} );\n});\nwindow.addEventListener( ''load'', function() {\n UAGBCounter.init( ''.uagb-block-eb69c34f'', {"layout":"number","heading":"Year of Experience","numberPrefix":"","numberSuffix":"+","startNumber":0,"endNumber":12,"totalNumber":100,"decimalPlaces":0,"animationDuration":1500,"thousandSeparator":",","circleSize":230,"circleStokeSize":8,"isFrontend":true} );\n});\nwindow.addEventListener( ''load'', function() {\n UAGBCounter.init( ''.uagb-block-5a657ec5'', {"layout":"number","heading":"Global Awards","numberPrefix":"","numberSuffix":"+","startNumber":0,"endNumber":5,"totalNumber":100,"decimalPlaces":0,"animationDuration":1500,"thousandSeparator":",","circleSize":230,"circleStokeSize":8,"isFrontend":true} );\n});\n });";s:18:"current_block_list";a:14:{i:0;s:14:"uagb/container";i:1;s:13:"uagb/info-box";i:3;s:21:"uagb/advanced-heading";i:4;s:12:"uagb/buttons";i:5;s:18:"uagb/buttons-child";i:8;s:12:"uagb/counter";i:9;s:10:"uagb/image";i:10;s:11:"core/search";i:11;s:10:"core/group";i:12;s:12:"core/heading";i:13;s:17:"core/latest-posts";i:14;s:20:"core/latest-comments";i:15;s:13:"core/archives";i:16;s:15:"core/categories";}s:8:"uag_flag";b:1;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:1:{s:8:"PT Serif";a:2:{s:10:"fontfamily";s:8:"PT Serif";s:12:"fontvariants";a:1:{i:0;s:3:"500";}}}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}');
INSERT INTO `wp8u_postmeta` VALUES
(630, 226, '_uag_css_file_name', 'uag-css-226.css'),
(631, 226, '_uag_js_file_name', 'uag-js-226.js'),
(632, 419, '_uag_page_assets', 'a:9:{s:3:"css";s:0:"";s:2:"js";s:0:"";s:18:"current_block_list";a:10:{i:0;s:10:"srfm/input";i:1;s:10:"srfm/email";i:2;s:13:"srfm/textarea";i:3;s:11:"core/search";i:4;s:10:"core/group";i:5;s:12:"core/heading";i:6;s:17:"core/latest-posts";i:7;s:20:"core/latest-comments";i:8;s:13:"core/archives";i:9;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(633, 246, '_uag_page_assets', 'a:9:{s:3:"css";s:263:".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n";s:2:"js";s:0:"";s:18:"current_block_list";a:8:{i:0;s:12:"core/heading";i:1;s:14:"core/paragraph";i:2;s:11:"core/search";i:3;s:10:"core/group";i:4;s:17:"core/latest-posts";i:5;s:20:"core/latest-comments";i:6;s:13:"core/archives";i:7;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(634, 244, '_uag_page_assets', 'a:9:{s:3:"css";s:263:".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n";s:2:"js";s:0:"";s:18:"current_block_list";a:8:{i:0;s:12:"core/heading";i:1;s:14:"core/paragraph";i:2;s:11:"core/search";i:3;s:10:"core/group";i:4;s:17:"core/latest-posts";i:5;s:20:"core/latest-comments";i:6;s:13:"core/archives";i:7;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(635, 247, '_uag_page_assets', 'a:9:{s:3:"css";s:263:".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n";s:2:"js";s:0:"";s:18:"current_block_list";a:8:{i:0;s:12:"core/heading";i:1;s:14:"core/paragraph";i:2;s:11:"core/search";i:3;s:10:"core/group";i:4;s:17:"core/latest-posts";i:5;s:20:"core/latest-comments";i:6;s:13:"core/archives";i:7;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(636, 228, '_uag_css_file_name', 'uag-css-228.css'),
(637, 227, '_uag_css_file_name', 'uag-css-227.css'),
(638, 229, '_uag_css_file_name', 'uag-css-229.css'),
(639, 8, '_uag_page_assets', 'a:9:{s:3:"css";s:0:"";s:2:"js";s:0:"";s:18:"current_block_list";a:8:{i:0;s:28:"latepoint/customer-dashboard";i:1;s:11:"core/search";i:2;s:10:"core/group";i:3;s:12:"core/heading";i:4;s:17:"core/latest-posts";i:5;s:20:"core/latest-comments";i:6;s:13:"core/archives";i:7;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(640, 1, '_uag_page_assets', 'a:9:{s:3:"css";s:263:".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n";s:2:"js";s:0:"";s:18:"current_block_list";a:8:{i:0;s:14:"core/paragraph";i:1;s:11:"core/search";i:2;s:10:"core/group";i:3;s:12:"core/heading";i:4;s:17:"core/latest-posts";i:5;s:20:"core/latest-comments";i:6;s:13:"core/archives";i:7;s:15:"core/categories";}s:8:"uag_flag";b:0;s:11:"uag_version";s:10:"1763191218";s:6:"gfonts";a:0:{}s:10:"gfonts_url";s:0:"";s:12:"gfonts_files";a:0:{}s:14:"uag_faq_layout";b:0;}'),
(641, 1, '_uag_css_file_name', 'uag-css-1.css'),
(642, 244, '_uag_css_file_name', 'uag-css-244.css'),
(643, 246, '_uag_css_file_name', 'uag-css-246.css'),
(644, 247, '_uag_css_file_name', 'uag-css-247.css');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_posts`
--
CREATE TABLE `wp8u_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext 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,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_posts`
--
INSERT INTO `wp8u_posts` VALUES
(1, 1, '2025-11-15 04:37:52', '2025-11-15 04:37:52', '<!-- 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', '', '', '2025-11-15 04:37:52', '2025-11-15 04:37:52', '', 0, 'https://novationinteriors.com/wp/?p=1', 0, 'post', '', 1),
(2, 1, '2025-11-15 04:37:52', '2025-11-15 04:37:52', '<!-- wp:paragraph -->\n<p>This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href="https://novationinteriors.com/wp/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2025-11-15 04:37:52', '2025-11-15 04:37:52', '', 0, 'https://novationinteriors.com/wp/?page_id=2', 0, 'page', '', 0),
(3, 1, '2025-11-15 04:37:52', '2025-11-15 04:37:52', '<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: https://novationinteriors.com/wp.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2025-11-15 04:37:52', '2025-11-15 04:37:52', '', 0, 'https://novationinteriors.com/wp/?page_id=3', 0, 'page', '', 0),
(4, 0, '2025-11-15 04:37:53', '2025-11-15 04:37:53', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2025-11-15 04:37:53', '2025-11-15 04:37:53', '', 0, 'https://novationinteriors.com/wp/2025/11/15/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2025-11-15 04:38:08', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2025-11-15 04:38:08', '0000-00-00 00:00:00', '', 0, 'https://novationinteriors.com/wp/?p=5', 0, 'post', '', 0),
(6, 1, '2025-11-15 04:41:06', '2025-11-15 04:41:06', '{"version": 3, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-astra', '', '', '2025-11-15 04:41:06', '2025-11-15 04:41:06', '', 0, 'https://novationinteriors.com/wp/2025/11/15/wp-global-styles-astra/', 0, 'wp_global_styles', '', 0),
(7, 1, '2025-11-15 05:04:14', '2025-11-15 05:04:14', '', '320612318_3296170487264397_8587241604754344168_n', '', 'inherit', 'open', 'closed', '', '320612318_3296170487264397_8587241604754344168_n', '', '', '2025-11-15 05:04:14', '2025-11-15 05:04:14', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/320612318_3296170487264397_8587241604754344168_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(8, 1, '2025-11-15 05:08:08', '2025-11-15 05:08:08', '<!-- wp:latepoint/customer-dashboard --><div class="wp-block-latepoint-customer-dashboard">Customer Dashboard</div><!-- /wp:latepoint/customer-dashboard -->', 'Customer Cabinet', '', 'publish', 'closed', 'closed', '', 'customer-cabinet', '', '', '2025-11-15 05:08:08', '2025-11-15 05:08:08', '', 0, 'https://novationinteriors.com/wp/customer-cabinet/', 0, 'page', '', 0),
(9, 1, '2025-11-15 05:08:09', '2025-11-15 05:08:09', '', 'pexels photo 1643383', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1643383', '', '', '2025-11-15 05:08:09', '2025-11-15 05:08:09', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg', 0, 'attachment', 'image/jpeg', 0),
(10, 1, '2025-11-15 05:08:11', '2025-11-15 05:08:11', '', 'pexels photo 1457842', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1457842', '', '', '2025-11-15 05:08:11', '2025-11-15 05:08:11', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg', 0, 'attachment', 'image/jpeg', 0),
(11, 1, '2025-11-15 05:08:12', '2025-11-15 05:08:12', '', 'pexels photo 1571460', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1571460', '', '', '2025-11-15 05:08:12', '2025-11-15 05:08:12', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg', 0, 'attachment', 'image/jpeg', 0),
(12, 1, '2025-11-15 05:08:13', '2025-11-15 05:08:13', '', 'pexels photo 1571453', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1571453', '', '', '2025-11-15 05:08:13', '2025-11-15 05:08:13', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg', 0, 'attachment', 'image/jpeg', 0),
(13, 1, '2025-11-15 05:08:15', '2025-11-15 05:08:15', '', 'pexels photo 271816', '', 'inherit', 'open', 'closed', '', 'pexels-photo-271816', '', '', '2025-11-15 05:08:15', '2025-11-15 05:08:15', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg', 0, 'attachment', 'image/jpeg', 0),
(14, 1, '2025-11-15 05:08:16', '2025-11-15 05:08:16', '', 'pexels photo 276724', '', 'inherit', 'open', 'closed', '', 'pexels-photo-276724', '', '', '2025-11-15 05:08:16', '2025-11-15 05:08:16', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg', 0, 'attachment', 'image/jpeg', 0),
(15, 1, '2025-11-15 05:08:17', '2025-11-15 05:08:17', '', 'pexels photo 827518', '', 'inherit', 'open', 'closed', '', 'pexels-photo-827518', '', '', '2025-11-15 05:08:17', '2025-11-15 05:08:17', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg', 0, 'attachment', 'image/jpeg', 0),
(16, 1, '2025-11-15 05:08:18', '2025-11-15 05:08:18', '', 'pexels photo 1129413', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1129413', '', '', '2025-11-15 05:08:18', '2025-11-15 05:08:18', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg', 0, 'attachment', 'image/jpeg', 0),
(17, 1, '2025-11-15 05:08:20', '2025-11-15 05:08:20', '', 'pexels photo 1374125', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1374125', '', '', '2025-11-15 05:08:20', '2025-11-15 05:08:20', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg', 0, 'attachment', 'image/jpeg', 0),
(18, 1, '2025-11-15 05:08:22', '2025-11-15 05:08:22', '', 'pexels photo 4352247', '', 'inherit', 'open', 'closed', '', 'pexels-photo-4352247', '', '', '2025-11-15 05:08:22', '2025-11-15 05:08:22', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg', 0, 'attachment', 'image/jpeg', 0),
(19, 1, '2025-11-15 05:08:23', '2025-11-15 05:08:23', '', 'pexels photo 447592', '', 'inherit', 'open', 'closed', '', 'pexels-photo-447592', '', '', '2025-11-15 05:08:23', '2025-11-15 05:08:23', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg', 0, 'attachment', 'image/jpeg', 0),
(20, 1, '2025-11-15 05:08:25', '2025-11-15 05:08:25', '', 'pexels photo 1648771', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1648771', '', '', '2025-11-15 05:08:25', '2025-11-15 05:08:25', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg', 0, 'attachment', 'image/jpeg', 0),
(21, 1, '2025-11-15 05:08:26', '2025-11-15 05:08:26', '', 'pexels photo 1571459', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1571459', '', '', '2025-11-15 05:08:26', '2025-11-15 05:08:26', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg', 0, 'attachment', 'image/jpeg', 0),
(22, 1, '2025-11-15 05:08:27', '2025-11-15 05:08:27', '', 'pexels photo 1457844', '', 'inherit', 'open', 'closed', '', 'pexels-photo-1457844', '', '', '2025-11-15 05:08:27', '2025-11-15 05:08:27', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg', 0, 'attachment', 'image/jpeg', 0),
(23, 1, '2025-11-15 05:08:28', '2025-11-15 05:08:28', '', 'pexels photo 245208', '', 'inherit', 'open', 'closed', '', 'pexels-photo-245208', '', '', '2025-11-15 05:08:28', '2025-11-15 05:08:28', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg', 0, 'attachment', 'image/jpeg', 0),
(24, 1, '2025-11-15 05:08:31', '2025-11-15 05:08:31', '', 'pexels photo 2067638', '', 'inherit', 'open', 'closed', '', 'pexels-photo-2067638', '', '', '2025-11-15 05:08:31', '2025-11-15 05:08:31', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg', 0, 'attachment', 'image/jpeg', 0),
(25, 1, '2025-11-15 05:08:32', '2025-11-15 05:08:32', '', 'astra', '', 'publish', 'closed', 'closed', '', 'astra', '', '', '2025-11-15 05:08:32', '2025-11-15 05:08:32', '', 0, 'https://novationinteriors.com/wp/2025/11/15/astra/', 0, 'custom_css', '', 0),
(26, 1, '2025-11-15 05:08:32', '2025-11-15 05:08:32', '', 'astra', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-15 05:08:32', '2025-11-15 05:08:32', '', 25, 'https://novationinteriors.com/wp/?p=26', 0, 'revision', '', 0),
(43, 1, '2025-11-15 05:09:03', '2025-11-15 05:09:03', '', 'value', '', 'inherit', 'open', 'closed', '', 'value', '', '', '2025-11-15 05:09:05', '2025-11-15 05:09:05', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 'Services', '', 'publish', 'closed', 'closed', '', '44', '', '', '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 0, 'https://novationinteriors.com/wp/2025/11/15/44/', 3, 'nav_menu_item', '', 0),
(45, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 'Contact', '', 'publish', 'closed', 'closed', '', '45', '', '', '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 0, 'https://novationinteriors.com/wp/2025/11/15/45/', 5, 'nav_menu_item', '', 0),
(55, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '{"version": 2, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-astra-2', '', '', '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 0, 'https://novationinteriors.com/wp/2025/11/15/wp-global-styles-astra-2/', 0, 'wp_global_styles', '', 0),
(178, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '<!-- wp:uagb/container {"block_id":"b684870f","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":15,"title":"pexels photo 827518","filename":"pexels-photo-827518.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-827518/","alt":"Inviting café corner with lush plants and cozy seating, perfect for relaxation.","author":"1","description":"","caption":"","name":"pexels-photo-827518","status":"inherit","uploadedTo":0,"date":1763183297000,"modified":1763183297000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"33c5392120","delete":"b984f8bf77","edit":"bbafda37ed"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=15&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":159205,"filesizeHumanReadable":"155 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":120,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-b684870f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":4,"block_id":"f83a47d8","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"/contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":12,"subHeadLeftMargin":12,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f83a47d8 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get Started Today</span><h2 class="uagb-ifb-title">Transform Your Space with Novation Interiors Now!</h2></div><p class="uagb-ifb-desc">Contact us today for a consultation and let your dream space become a reality.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="/contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->', 'Footer CTA', '', 'publish', 'closed', 'closed', '', 'footer-cta', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 0, 'https://novationinteriors.com/wp/2025/11/15/footer-cta/', 0, 'wp_block', '', 0),
(221, 1, '2025-11-15 05:09:05', '2025-11-15 05:09:05', '', 'testimonial skip 01', '', 'inherit', 'open', 'closed', '', 'testimonial-skip-01', '', '', '2025-11-15 05:09:06', '2025-11-15 05:09:06', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg', 0, 'attachment', 'image/jpeg', 0),
(222, 1, '2025-11-15 05:09:06', '2025-11-15 05:09:06', '', 'testimonial skip 02', '', 'inherit', 'open', 'closed', '', 'testimonial-skip-02', '', '', '2025-11-15 05:09:07', '2025-11-15 05:09:07', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg', 0, 'attachment', 'image/jpeg', 0),
(223, 1, '2025-11-15 05:09:07', '2025-11-15 05:09:07', '', 'testimonial skip 03', '', 'inherit', 'open', 'closed', '', 'testimonial-skip-03', '', '', '2025-11-15 05:09:08', '2025-11-15 05:09:08', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg', 0, 'attachment', 'image/jpeg', 0),
(224, 1, '2025-11-15 05:09:08', '2025-11-15 05:09:08', '', 'testimonial skip 04', '', 'inherit', 'open', 'closed', '', 'testimonial-skip-04', '', '', '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg', 0, 'attachment', 'image/jpeg', 0),
(225, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation-2', '', '', '2025-11-15 05:09:52', '2025-11-15 05:09:52', '', 0, 'https://novationinteriors.com/wp/2025/11/15/navigation-2/', 0, 'wp_navigation', '', 0),
(226, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"pexels photo 1643383","filename":"pexels-photo-1643383.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1643383/","alt":"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.","author":"1","description":"","caption":"","name":"pexels-photo-1643383","status":"inherit","uploadedTo":0,"date":1763183289000,"modified":1763183289000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"e841509ba4","delete":"47dc4a1487","edit":"60c3bad976"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=9\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":118833,"filesizeHumanReadable":"116 KB","context":"","height":843,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-150x150.jpeg","orientation":"landscape"},"medium":{"height":198,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-300x198.jpeg","orientation":"landscape"},"large":{"height":674,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-1024x674.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","height":843,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Get Started</span><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504.3 273.6l-112.1 104c-6.992 6.484-17.18 8.218-25.94 4.406c-8.758-3.812-14.42-12.45-14.42-21.1L351.9 288H32C14.33 288 .0002 273.7 .0002 255.1S14.33 224 32 224h319.9l0-72c0-9.547 5.66-18.19 14.42-22c8.754-3.809 18.95-2.075 25.94 4.41l112.1 104C514.6 247.9 514.6 264.1 504.3 273.6z"></path></svg></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(\\u002d\\u002dast-global-color-0)","hColor":"var(\\u002d\\u002dast-global-color-4)","hBackground":"var(\\u002d\\u002dast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(\\u002d\\u002dast-global-color-0)","btnBorderHColor":"var(\\u002d\\u002dast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self" role="button"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"pexels photo 1457842","filename":"pexels-photo-1457842.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457842/","alt":"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.","author":"1","description":"","caption":"","name":"pexels-photo-1457842","status":"inherit","uploadedTo":0,"date":1763183291000,"modified":1763183291000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"85313d1393","delete":"e4dfa51205","edit":"689316abd3"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=10\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":92286,"filesizeHumanReadable":"90 KB","context":"","height":777,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-150x150.jpeg","orientation":"landscape"},"medium":{"height":182,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-300x182.jpeg","orientation":"landscape"},"large":{"height":622,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-1024x622.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","height":777,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":11,"title":"pexels photo 1571460","filename":"pexels-photo-1571460.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571460/","alt":"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.","author":"1","description":"","caption":"","name":"pexels-photo-1571460","status":"inherit","uploadedTo":0,"date":1763183292000,"modified":1763183292000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"582124632f","delete":"11f11d919f","edit":"438ed46680"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=11\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":119312,"filesizeHumanReadable":"117 KB","context":"","height":823,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-150x150.jpeg","orientation":"landscape"},"medium":{"height":193,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-300x193.jpeg","orientation":"landscape"},"large":{"height":658,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-1024x658.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","height":823,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"pexels photo 1571453","filename":"pexels-photo-1571453.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571453/","alt":"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.","author":"1","description":"","caption":"","name":"pexels-photo-1571453","status":"inherit","uploadedTo":0,"date":1763183293000,"modified":1763183293000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"6305ddf4b9","delete":"6df5e17e48","edit":"81a5930b47"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=12\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":133044,"filesizeHumanReadable":"130 KB","context":"","height":855,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-150x150.jpeg","orientation":"landscape"},"medium":{"height":200,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-300x200.jpeg","orientation":"landscape"},"large":{"height":684,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-1024x684.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","height":855,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":13,"title":"pexels photo 271816","filename":"pexels-photo-271816.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-271816/","alt":"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.","author":"1","description":"","caption":"","name":"pexels-photo-271816","status":"inherit","uploadedTo":0,"date":1763183295000,"modified":1763183295000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"c439696799","delete":"721d23a9e8","edit":"da460ab366"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=13\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":102369,"filesizeHumanReadable":"100 KB","context":"","height":720,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-150x150.jpeg","orientation":"landscape"},"medium":{"height":169,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-300x169.jpeg","orientation":"landscape"},"large":{"height":576,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-1024x576.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","height":720,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","alt":"Inviting living room interior featuring modern design with cozy furnishings and stylish decor.","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg" alt="Inviting living room interior featuring modern design with cozy furnishings and stylish decor." class="uag-image-14" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'publish', 'closed', 'closed', '', 'home-2', '', '', '2025-11-15 07:20:18', '2025-11-15 07:20:18', '', 0, 'https://novationinteriors.com/wp/home-2/', 0, 'page', '', 0);
INSERT INTO `wp8u_posts` VALUES
(227, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":22,"title":"pexels photo 1457844","filename":"pexels-photo-1457844.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457844/","alt":"Sleek contemporary hallway featuring a stunning glass chandelier and minimalist design.","author":"1","description":"","caption":"","name":"pexels-photo-1457844","status":"inherit","uploadedTo":0,"date":1763183307000,"modified":1763183307000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"569f471602","delete":"15eb50db98","edit":"5d725c5da4"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=22&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":41963,"filesizeHumanReadable":"41 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space Today</span><h1 class="uagb-ifb-title">Discover Novation Interiors'' Passion for Design</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"43961427","justifyContentDesktop":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":50,"rowGapMobile":55,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-43961427 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"91de6b3c","widthTablet":100,"directionDesktop":"row","directionTablet":"column","alignItemsDesktop":"flex-start","rowGapTablet":20,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":0,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-91de6b3c"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"","prefixHeadingTag":"h3","headingTag":"p","headSpace":15,"subHeadSpace":0,"block_id":"3e6b189a","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":20,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":15,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3e6b189a uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title-prefix">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-ifb-title">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div><p class="uagb-ifb-desc">At Novation Interiors, we take pride in the transformative results we''ve achieved for our clients. From stunning residential makeovers to innovative commercial designs, our meticulous approach ensures every project embodies the unique style and comfort of each client, resulting in beautiful and functional spaces.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/image {"block_id":"aa6e2cb7","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":23,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":350,"heightMobile":300,"naturalWidth":1024,"naturalHeight":400,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-aa6e2cb7 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg" alt="Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements." class="uag-image-23" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"3f9cf3b8","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-3f9cf3b8"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Commitment</span><h3 class="uagb-ifb-title">Crafting Personalized Environments</h3></div><p class="uagb-ifb-desc">At Novation Interiors, our mission is to create personalized sanctuaries that reflect the distinct lifestyle and personality of our clients. With a blend of elegance and functionality, we aim to inspire and elevate every environment we touch.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"eba12409","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-eba12409 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Core Principles</span><h3 class="uagb-ifb-title">What Drives Us</h3></div><p class="uagb-ifb-desc">We value collaboration, innovation, and meticulous attention to detail. Our commitment to understanding each client''s unique needs ensures that we deliver designs that not only meet but exceed expectations, fostering lasting relationships built on trust and satisfaction.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6f310176","directionDesktop":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6f310176 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5962c3bc","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"center","paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"rowGapDesktop":40,"rowGapTablet":40,"rowGapMobile":45,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5962c3bc"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"31e33fee","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-31e33fee uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Common Inquiries</span><h2 class="uagb-ifb-title">Frequently Asked Questions</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/faq {"block_id":"0c5731f4","blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"rowsGap":20,"rowsGapTablet":20,"boxBgColor":"var(--ast-global-color-5)","borderStyle":"","borderWidth":"","borderRadius":"","borderColor":"","vquestionPaddingMobile":15,"vquestionPaddingTablet":15,"vquestionPaddingDesktop":24,"hquestionPaddingMobile":15,"hquestionPaddingTablet":15,"hquestionPaddingDesktop":24,"iconColor":"var(--ast-global-color-2)","iconActiveColor":"var(--ast-global-color-0)","questionFontWeight":"400","questionFontSize":18,"questionFontSizeTablet":17,"questionFontSizeMobile":16,"icon":"angle-down","iconActive":"angle-up","iconAlign":"row-reverse","iconSize":20,"schema":"{u0022@contextu0022:u0022https://schema.orgu0022,u0022@typeu0022:u0022FAQPageu0022,u0022@idu0022:u0022https://multipurpose12.ziptemplates.top/about/u0022,u0022mainEntityu0022:[{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022What services does Novation Interiors offer?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022How does the design process work?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022Can you work within my budget?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.u0022}}]}","questionLeftPaddingTablet":15,"questionBottomPaddingTablet":15,"questionLeftPaddingDesktop":24,"questionBottomPaddingDesktop":24,"questionLeftPaddingMobile":15,"questionBottomPaddingMobile":15,"headingTag":"p","questionSpacingLink":true,"answerTopPadding":0,"answerRightPadding":24,"answerBottomPadding":24,"answerLeftPadding":24,"answerTopPaddingTablet":0,"answerRightPaddingTablet":15,"answerBottomPaddingTablet":15,"answerLeftPaddingTablet":15,"answerTopPaddingMobile":0,"answerRightPaddingMobile":15,"answerBottomPaddingMobile":15,"answerLeftPaddingMobile":15,"overallBorderTopWidth":1,"overallBorderLeftWidth":1,"overallBorderRightWidth":1,"overallBorderBottomWidth":1,"overallBorderTopLeftRadius":0,"overallBorderTopRightRadius":0,"overallBorderBottomLeftRadius":0,"overallBorderBottomRightRadius":0,"overallBorderStyle":"solid","overallBorderColor":"var(--ast-global-color-6)","iconBgColor":""} -->\n<div class="wp-block-uagb-faq uagb-faq__outer-wrap uagb-block-0c5731f4 uagb-faq-icon-row-reverse uagb-faq-layout-accordion uagb-faq-expand-first-true uagb-faq-inactive-other-true uagb-faq__wrap uagb-buttons-layout-wrap uagb-faq-equal-height" data-faqtoggle="true" role="tablist"><!-- wp:uagb/faq-child {"block_id":"8a302e01","question":"What services does Novation Interiors offer?","answer":"Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-8a302e01" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">What services does Novation Interiors offer?</p></div><div class="uagb-faq-content"><p>Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"cef63c6f","question":"How does the design process work?","answer":"Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-cef63c6f" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">How does the design process work?</p></div><div class="uagb-faq-content"><p>Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"f6a73cb6","question":"Can you work within my budget?","answer":"Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-f6a73cb6" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">Can you work within my budget?</p></div><div class="uagb-faq-content"><p>Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.</p></div></div>\n<!-- /wp:uagb/faq-child --></div>\n<!-- /wp:uagb/faq --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"892c8053","widthDesktop":50,"widthTablet":50,"justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-892c8053"><!-- wp:uagb/image {"block_id":"8c89d0eb","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":24,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":500,"heightTablet":400,"heightMobile":300,"naturalWidth":600,"naturalHeight":640,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":50,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Stylish café interior featuring modern décor, green walls, plants, and comfortable seating."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8c89d0eb wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg" alt="Stylish café interior featuring modern décor, green walls, plants, and comfortable seating." class="uag-image-24" width="600" height="500" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 0, 'https://novationinteriors.com/wp/about/', 0, 'page', '', 0),
(228, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":1000,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":17,"title":"pexels photo 1374125","filename":"pexels-photo-1374125.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1374125/","alt":"A stylish and cozy bedroom featuring green walls, botanical prints, and soft lighting for a contemporary feel.","author":"1","description":"","caption":"","name":"pexels-photo-1374125","status":"inherit","uploadedTo":0,"date":1763183300000,"modified":1763183300000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"9f2990ce66","delete":"56ba83e905","edit":"1e21fe8f98"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=17&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":72270,"filesizeHumanReadable":"71 KB","context":"","height":900,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125-233x300.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg","height":900,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Explore Our Unique Design Offerings</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"48009aef","directionDesktop":"row","alignItemsDesktop":"flex-start","justifyContentDesktop":"space-between","wrapDesktop":"wrap","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":55,"rowGapMobile":55,"columnGapDesktop":0,"columnGapTablet":0,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-48009aef alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5250fd34","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5250fd34"><!-- wp:uagb/container {"block_id":"e2a91d97","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-e2a91d97"><!-- wp:uagb/image {"block_id":"8590ae9a","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":18,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8590ae9a wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg" alt="A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor." class="uag-image-18" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"3c7afed0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3c7afed0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01.</span><h2 class="uagb-ifb-title">Residential Design Services</h2></div><p class="uagb-ifb-desc">Our residential design services focus on creating inviting, personalized environments that resonate with your lifestyle. We collaborate closely with clients to understand their vision and preferences, ensuring every space is thoughtfully constructed. From conceptualization to execution, we meticulously select colors, materials, and furnishings to reflect your individual aesthetic. Each project is treated with the utmost care, ensuring that your home becomes an inspiring sanctuary tailored just for you.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"39480438","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-39480438"><!-- wp:uagb/image {"block_id":"c0169bf8","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":19,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-c0169bf8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg" alt="Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration." class="uag-image-19" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"57760dfc","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-57760dfc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02.</span><h2 class="uagb-ifb-title">Commercial Design Solutions</h2></div><p class="uagb-ifb-desc">Our commercial design solutions are crafted to enhance motivation and productivity within your workplace. Understanding the significance of a well-designed environment, we work to create spaces that are both functional and visually appealing. By harmonizing your brand identity with user-centric design, we ensure that every detail contributes to a positive experience for both employees and clients. Our approach is collaborative, innovative, and tailored to meet the unique needs of your business, whether it''s an office, retail space, or hospitality venue.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"58944a93","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"center","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-58944a93"><!-- wp:uagb/container {"block_id":"62a31330","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-62a31330"><!-- wp:uagb/image {"block_id":"28a63686","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":20,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Elegant modern interior living room with fireplace and stylish decor."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-28a63686 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg" alt="Elegant modern interior living room with fireplace and stylish decor." class="uag-image-20" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"b870fe7d","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-b870fe7d uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03.</span><h2 class="uagb-ifb-title">Consultation Services</h2></div><p class="uagb-ifb-desc">Our consultation services provide expertise and guidance for your design journey. Whether you''re starting from scratch or need help refining an existing concept, our team is here to support you. We offer tailored advice on space planning, color palettes, material selections, and more. Our collaborative approach ensures you feel confident and informed every step of the way. Together, we''ll develop a roadmap to achieve a harmonious and stylish space that truly embodies your vision.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a474bc71","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topMarginDesktop":-126,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":-64,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginTypeTablet":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-a474bc71"><!-- wp:uagb/image {"block_id":"616a26fd","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":21,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Spacious modern living room featuring stairs, a TV, and sleek furniture design."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-616a26fd wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg" alt="Spacious modern living room featuring stairs, a TV, and sleek furniture design." class="uag-image-21" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"65a70ccb","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-65a70ccb uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04.</span><h2 class="uagb-ifb-title">Custom Furniture Design</h2></div><p class="uagb-ifb-desc">Our custom furniture design service creates unique pieces that perfectly match your style and functional needs. We collaborate with you to craft furniture solutions tailored to your specifications, ensuring they fit seamlessly into your spaces. Each piece is designed with an emphasis on both aesthetics and usability, ensuring that your selections not only look stunning but also enhance your everyday living. Experience the blend of craftsmanship and creativity that makes your furniture truly one-of-a-kind.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 0, 'https://novationinteriors.com/wp/services/', 0, 'page', '', 0);
INSERT INTO `wp8u_posts` VALUES
(229, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":16,"title":"pexels photo 1129413","filename":"pexels-photo-1129413.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1129413/","alt":"Cozy indoor space with rustic decor, warm lighting, and natural elements.","author":"1","description":"","caption":"","name":"pexels-photo-1129413","status":"inherit","uploadedTo":0,"date":1763183298000,"modified":1763183298000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"3fdafdeed0","delete":"fc83dc114e","edit":"693a9bf014"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=16&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":85664,"filesizeHumanReadable":"84 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get in Touch</span><h1 class="uagb-ifb-title">Connect with Novation Interiors Today</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5504678b","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":60,"columnGapTablet":20,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5504678b alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"251cd539","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-251cd539"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><p class="uagb-ifb-title">Address</p></div><p class="uagb-ifb-desc">Navi Mumbai</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c9fbc81d","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-c9fbc81d"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"af7bb653","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-af7bb653 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><p class="uagb-ifb-title">Call Us</p></div><p class="uagb-ifb-desc">9320464646/7045598686</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"ebef70d3","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-ebef70d3"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"da07b720","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-da07b720 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><p class="uagb-ifb-title">Email</p></div><p class="uagb-ifb-desc">designer@novationinteriors.com</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5c0bd371","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"rowGapDesktop":20,"rowGapTablet":20,"rowGapMobile":20,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5c0bd371"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":0,"subHeadSpace":0,"block_id":"e7f06968","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e7f06968 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04</span><p class="uagb-ifb-title">Social Media</p></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/icon-list {"block_id":"64139ed7","classMigrate":true,"childMigrate":true,"alignTablet":"left","alignMobile":"center","gap":20,"size":20,"sizeMobile":20,"sizeTablet":19,"hideLabel":true,"icon_layout":"horizontal","iconColor":"var(--ast-global-color-2)","iconHoverColor":"var(--ast-global-color-0)"} -->\n<div class="wp-block-uagb-icon-list uagb-block-64139ed7"><div class="uagb-icon-list__wrap"><!-- wp:uagb/icon-list-child {"block_id":"6432aeab","hideLabel":true,"icon":"facebook","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-6432aeab"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"2fc84443","hideLabel":true,"icon":"twitter","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-2fc84443"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.4 151.7c.325 4.548 .325 9.097 .325 13.65 0 138.7-105.6 298.6-298.6 298.6-59.45 0-114.7-17.22-161.1-47.11 8.447 .974 16.57 1.299 25.34 1.299 49.06 0 94.21-16.57 130.3-44.83-46.13-.975-84.79-31.19-98.11-72.77 6.498 .974 12.99 1.624 19.82 1.624 9.421 0 18.84-1.3 27.61-3.573-48.08-9.747-84.14-51.98-84.14-102.1v-1.299c13.97 7.797 30.21 12.67 47.43 13.32-28.26-18.84-46.78-51.01-46.78-87.39 0-19.49 5.197-37.36 14.29-52.95 51.65 63.67 129.3 105.3 216.4 109.8-1.624-7.797-2.599-15.92-2.599-24.04 0-57.83 46.78-104.9 104.9-104.9 30.21 0 57.5 12.67 76.67 33.14 23.72-4.548 46.46-13.32 66.6-25.34-7.798 24.37-24.37 44.83-46.13 57.83 21.12-2.273 41.58-8.122 60.43-16.24-14.29 20.79-32.16 39.31-52.63 54.25z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"e8e66f77","hideLabel":true,"icon":"instagram","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-e8e66f77"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"75ad829c","hideLabel":true,"icon":"linkedin","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-75ad829c"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"1e528de7","hideLabel":true,"icon":"youtube","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-1e528de7"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.7 124.1c-6.281-23.65-24.79-42.28-48.28-48.6C458.8 64 288 64 288 64S117.2 64 74.63 75.49c-23.5 6.322-42 24.95-48.28 48.6-11.41 42.87-11.41 132.3-11.41 132.3s0 89.44 11.41 132.3c6.281 23.65 24.79 41.5 48.28 47.82C117.2 448 288 448 288 448s170.8 0 213.4-11.49c23.5-6.321 42-24.17 48.28-47.82 11.41-42.87 11.41-132.3 11.41-132.3s0-89.44-11.41-132.3zm-317.5 213.5V175.2l142.7 81.21-142.7 81.2z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child --></div></div>\n<!-- /wp:uagb/icon-list --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7dfed97e","directionDesktop":"row","directionTablet":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","wrapTablet":"nowrap","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-7dfed97e alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/google-map {"block_id":"e1c989be","height":650,"heightTablet":500,"heightMobile":350,"address":"Navi Mumbai"} /-->\n\n<!-- wp:uagb/container {"block_id":"d0cb7be2","widthDesktop":50,"widthTablet":50,"directionTablet":"column","directionMobile":"column","alignItemsTablet":"flex-start","justifyContentTablet":"center","wrapTablet":"nowrap","wrapMobile":"nowrap","rowGapDesktop":40,"rowGapTablet":30,"rowGapMobile":35,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-d0cb7be2"><!-- wp:uagb/advanced-heading {"block_id":"f35113b2","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-f35113b2"><h2 class="uagb-heading-text">We’d Love to Hear You</h2><p class="uagb-desc-text">Reach out to us for personalized design solutions tailored to your unique needs and style.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:shortcode -->\n[sureforms id=''419'']\n<!-- /wp:shortcode --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 0, 'https://novationinteriors.com/wp/contact/', 0, 'page', '', 0),
(230, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 'Home', '', 'publish', 'closed', 'closed', '', '42', '', '', '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 0, 'https://novationinteriors.com/wp/2025/11/15/42/', 1, 'nav_menu_item', '', 0),
(231, 1, '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 'About', '', 'publish', 'closed', 'closed', '', '43', '', '', '2025-11-15 05:09:09', '2025-11-15 05:09:09', '', 0, 'https://novationinteriors.com/wp/2025/11/15/43/', 2, 'nav_menu_item', '', 0),
(244, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'Mastering the First Impression: Your intriguing post title goes here', '', 'publish', 'open', 'open', '', 'post-3', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 0, 'https://novationinteriors.com/wp/2025/11/15/post-3/', 0, 'post', '', 0),
(246, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'The Art of Drawing Readers In: Your attractive post title goes here', '', 'publish', 'open', 'open', '', 'post-2', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 0, 'https://novationinteriors.com/wp/2025/11/15/post-2/', 0, 'post', '', 0),
(247, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'Crafting Captivating Headlines: Your awesome post title goes here', '', 'publish', 'open', 'open', '', 'post-1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 0, 'https://novationinteriors.com/wp/2025/11/15/post-1/', 0, 'post', '', 0),
(298, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 0, 'https://novationinteriors.com/wp/blog/', 0, 'page', '', 0),
(301, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 0, 'https://novationinteriors.com/wp/2025/11/15/blog/', 4, 'nav_menu_item', '', 0),
(303, 1, '2025-11-15 05:09:10', '2025-11-15 05:09:10', '', 'post images 01', '', 'inherit', 'open', 'closed', '', 'post-images-01', '', '', '2025-11-15 05:09:12', '2025-11-15 05:09:12', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/03/post-images-01-scaled-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(304, 1, '2025-11-15 05:09:13', '2025-11-15 05:09:13', '', 'post images 02', '', 'inherit', 'open', 'closed', '', 'post-images-02', '', '', '2025-11-15 05:09:15', '2025-11-15 05:09:15', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/03/post-images-02-scaled-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(305, 1, '2025-11-15 05:09:15', '2025-11-15 05:09:15', '', 'post images 03', '', 'inherit', 'open', 'closed', '', 'post-images-03', '', '', '2025-11-15 05:09:17', '2025-11-15 05:09:17', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2024/03/post-images-03-scaled-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(419, 1, '2025-11-15 05:09:18', '2025-11-15 05:09:18', '<!-- wp:srfm/input {"block_id":"23f9ff81","required":true,"fieldWidth":50,"label":"First Name","formId":419,"slug":"first-name"} /-->\n\n<!-- wp:srfm/input {"block_id":"e95951ef","required":true,"fieldWidth":50,"label":"Last Name","formId":419,"slug":"last-name"} /-->\n\n<!-- wp:srfm/email {"block_id":"1e93e3bb","required":true,"label":"Email","formId":419,"slug":"email"} /-->\n\n<!-- wp:srfm/textarea {"block_id":"f840b04d","required":true,"label":"Message","formId":419,"slug":"message"} /-->', 'Simple Contact Form', '', 'publish', 'closed', 'closed', '', 'simple-contact-form', '', '', '2025-11-15 05:09:18', '2025-11-15 05:09:18', '', 0, 'https://novationinteriors.com/wp/form/simple-contact-form/', 0, 'sureforms_form', '', 0),
(420, 1, '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 'Blog', '', 'inherit', 'closed', 'closed', '', '298-revision-v1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 298, 'https://novationinteriors.com/wp/?p=420', 0, 'revision', '', 0),
(421, 1, '2025-11-15 05:09:23', '2025-11-15 05:09:23', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'Mastering the First Impression: Your intriguing post title goes here', '', 'inherit', 'closed', 'closed', '', '244-revision-v1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 244, 'https://novationinteriors.com/wp/?p=421', 0, 'revision', '', 0),
(422, 1, '2025-11-15 05:09:23', '2025-11-15 05:09:23', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'The Art of Drawing Readers In: Your attractive post title goes here', '', 'inherit', 'closed', 'closed', '', '246-revision-v1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 246, 'https://novationinteriors.com/wp/?p=422', 0, 'revision', '', 0),
(423, 1, '2025-11-15 05:09:23', '2025-11-15 05:09:23', '<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Engaging Introductions: Capturing Your Audience''s Interest</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">The initial impression your blog post makes is crucial, and that''s where your introduction comes into play. Hook your readers with a captivating opening that sparks curiosity or emotion. Address their pain points or questions to establish a connection. Outline the purpose of your post and give a sneak peek into what they can expect. A well-crafted introduction sets the tone for an immersive reading experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Crafting Informative and Cohesive Body Content</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} -->\n<p style="margin-bottom:var(--wp--preset--spacing--70)">Within the body of your blog post lies the heart of your message. Break down your content into coherent sections, each with a clear heading that guides readers through the narrative. Dive deep into each subtopic, providing valuable insights, data, and relatable examples. Maintain a logical flow between paragraphs using transitions, ensuring that each point naturally progresses to the next. By structuring your body content effectively, you keep readers engaged and eager to learn more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {"level":4} -->\n<h4 class="wp-block-heading">Powerful Closures: Leaving a Lasting Impression</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Concluding your blog post isn''t just about wrapping things up – it''s your final opportunity to leave a strong impact. Summarize the key takeaways from your post, reinforcing your main points. If relevant, provide actionable solutions or thought-provoking questions to keep readers thinking beyond the post. Encourage engagement by inviting comments, questions, or sharing. A well-crafted conclusion should linger in your readers'' minds, inspiring them to explore further or apply what they''ve learned.</p>\n<!-- /wp:paragraph -->', 'Crafting Captivating Headlines: Your awesome post title goes here', '', 'inherit', 'closed', 'closed', '', '247-revision-v1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 247, 'https://novationinteriors.com/wp/?p=423', 0, 'revision', '', 0),
(424, 1, '2025-11-15 05:09:23', '2025-11-15 05:09:23', '<!-- wp:uagb/container {"block_id":"b684870f","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"cta","filename":"cta.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/cta.jpg","link":"https://multipurpose12.ziptemplates.top/cta/","alt":"","author":"2","description":"","caption":"","name":"cta","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:39.000Z","modified":"2024-02-16T17:02:39.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"499d1557f7","delete":"dcbcc24ffb","edit":"45ebb44c3e"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=10u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":334239,"filesizeHumanReadable":"326 KB","context":"","height":650,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/cta-150x150.jpg","orientation":"landscape"},"medium":{"height":102,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/cta-300x102.jpg","orientation":"landscape"},"large":{"height":347,"width":1024,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/cta-1024x347.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/cta.jpg","height":650,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":120,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-b684870f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":4,"block_id":"f83a47d8","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"/contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":12,"subHeadLeftMargin":12,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f83a47d8 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get Started Today</span><h2 class="uagb-ifb-title">Transform Your Space with Novation Interiors Now!</h2></div><p class="uagb-ifb-desc">Contact us today for a consultation and let your dream space become a reality.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="/contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->', 'Footer CTA', '', 'inherit', 'closed', 'closed', '', '178-revision-v1', '', '', '2025-11-15 05:09:23', '2025-11-15 05:09:23', '', 178, 'https://novationinteriors.com/wp/?p=424', 0, 'revision', '', 0),
(425, 1, '2025-11-15 05:09:24', '2025-11-15 05:09:24', '', 'default.png', '', 'inherit', 'open', 'closed', '', 'default-png', '', '', '2025-11-15 05:09:24', '2025-11-15 05:09:24', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png', 0, 'attachment', 'image/png', 0),
(426, 1, '2025-11-15 05:09:25', '2025-11-15 05:09:25', '', 'cta 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'cta-150x150-jpg', '', '', '2025-11-15 05:09:25', '2025-11-15 05:09:25', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(427, 1, '2025-11-15 05:09:26', '2025-11-15 05:09:26', '', 'cta 300x102.jpg', '', 'inherit', 'open', 'closed', '', 'cta-300x102-jpg', '', '', '2025-11-15 05:09:26', '2025-11-15 05:09:26', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-300x102-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(428, 1, '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 'cta 1024x347.jpg', '', 'inherit', 'open', 'closed', '', 'cta-1024x347-jpg', '', '', '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-1024x347-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(429, 1, '2025-11-15 05:09:27', '2025-11-15 05:09:27', '<!-- wp:uagb/container {"block_id":"b684870f","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"cta","filename":"cta.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/cta.jpg","link":"https://multipurpose12.ziptemplates.top/cta/","alt":"","author":"2","description":"","caption":"","name":"cta","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:39.000Z","modified":"2024-02-16T17:02:39.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"499d1557f7","delete":"dcbcc24ffb","edit":"45ebb44c3e"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=10u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":334239,"filesizeHumanReadable":"326 KB","context":"","height":650,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-150x150-1.jpg","orientation":"landscape"},"medium":{"height":102,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-300x102-1.jpg","orientation":"landscape"},"large":{"height":347,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/cta-1024x347-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/cta.jpg","height":650,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":120,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-b684870f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":4,"block_id":"f83a47d8","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"/contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":12,"subHeadLeftMargin":12,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f83a47d8 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get Started Today</span><h2 class="uagb-ifb-title">Transform Your Space with Novation Interiors Now!</h2></div><p class="uagb-ifb-desc">Contact us today for a consultation and let your dream space become a reality.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="/contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->', 'Footer CTA', '', 'inherit', 'closed', 'closed', '', '178-revision-v1', '', '', '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 178, 'https://novationinteriors.com/wp/?p=429', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(430, 1, '2025-11-15 05:09:27', '2025-11-15 05:09:27', '{"version": 2, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'inherit', 'closed', 'closed', '', '55-revision-v1', '', '', '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 55, 'https://novationinteriors.com/wp/?p=430', 0, 'revision', '', 0),
(431, 1, '2025-11-15 05:09:27', '2025-11-15 05:09:27', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"home-bg","filename":"home-bg.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/home-bg.jpg","link":"https://multipurpose12.ziptemplates.top/home-bg/","alt":"","author":"2","description":"","caption":"","name":"home-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:42.000Z","modified":"2024-02-16T17:02:42.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"862404cc50","delete":"03fbad4fea","edit":"837f6c2456"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=12u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":266456,"filesizeHumanReadable":"260 KB","context":"","height":866,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/home-bg-150x150.jpg","orientation":"landscape"},"medium":{"height":135,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/home-bg-300x135.jpg","orientation":"landscape"},"large":{"height":462,"width":1024,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/home-bg-1024x462.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/home-bg.jpg","height":866,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(u002du002dast-global-color-0)","hColor":"var(u002du002dast-global-color-4)","hBackground":"var(u002du002dast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(u002du002dast-global-color-0)","btnBorderHColor":"var(u002du002dast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":18,"title":"services-05","filename":"services-05.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-05.jpg","link":"https://multipurpose12.ziptemplates.top/services-05/","alt":"","author":"2","description":"","caption":"","name":"services-05","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:51.000Z","modified":"2024-02-16T17:02:51.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"6dc3b153a0","delete":"ca19e462e2","edit":"380ca8a87e"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=18u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":53721,"filesizeHumanReadable":"52 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-05-150x150.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-05-233x300.jpg","orientation":"portrait"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-05.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":19,"title":"services-06","filename":"services-06.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-06.jpg","link":"https://multipurpose12.ziptemplates.top/services-06/","alt":"","author":"2","description":"","caption":"","name":"services-06","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:52.000Z","modified":"2024-02-16T17:02:52.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"c1147def7f","delete":"727fb46b52","edit":"1392039308"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=19u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":30456,"filesizeHumanReadable":"30 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-06-150x150.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-06-233x300.jpg","orientation":"portrait"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-06.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":20,"title":"services-07","filename":"services-07.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-07.jpg","link":"https://multipurpose12.ziptemplates.top/services-07/","alt":"","author":"2","description":"","caption":"","name":"services-07","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:53.000Z","modified":"2024-02-16T17:02:53.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"e15c69de36","delete":"cbabf754a1","edit":"541d43ea0a"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=20u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":52957,"filesizeHumanReadable":"52 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-07-150x150.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-07-233x300.jpg","orientation":"portrait"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-07.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"craft","filename":"craft.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/craft.jpg","link":"https://multipurpose12.ziptemplates.top/craft/","alt":"","author":"2","description":"","caption":"","name":"craft","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:35.000Z","modified":"2024-02-16T17:02:35.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"b5ad1b8f61","delete":"1b4a43d99d","edit":"a56b75b427"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=9u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":134746,"filesizeHumanReadable":"132 KB","context":"","height":688,"width":885,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/craft-150x150.jpg","orientation":"landscape"},"medium":{"height":233,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/craft-300x233.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/craft.jpg","height":688,"width":885,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value-1024x480.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":22,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value-1024x480.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/value-1024x480.jpg" alt="" class="uag-image-22" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'inherit', 'closed', 'closed', '', '226-revision-v1', '', '', '2025-11-15 05:09:27', '2025-11-15 05:09:27', '', 226, 'https://novationinteriors.com/wp/?p=431', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(432, 1, '2025-11-15 05:09:29', '2025-11-15 05:09:29', '', 'home bg 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'home-bg-150x150-jpg', '', '', '2025-11-15 05:09:29', '2025-11-15 05:09:29', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(433, 1, '2025-11-15 05:09:30', '2025-11-15 05:09:30', '', 'home bg 300x135.jpg', '', 'inherit', 'open', 'closed', '', 'home-bg-300x135-jpg', '', '', '2025-11-15 05:09:30', '2025-11-15 05:09:30', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-300x135-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(434, 1, '2025-11-15 05:09:31', '2025-11-15 05:09:31', '', 'home bg 1024x462.jpg', '', 'inherit', 'open', 'closed', '', 'home-bg-1024x462-jpg', '', '', '2025-11-15 05:09:31', '2025-11-15 05:09:31', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-1024x462-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(435, 1, '2025-11-15 05:09:32', '2025-11-15 05:09:32', '', 'services 05 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'services-05-150x150-jpg', '', '', '2025-11-15 05:09:32', '2025-11-15 05:09:32', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-05-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(436, 1, '2025-11-15 05:09:33', '2025-11-15 05:09:33', '', 'services 05 233x300.jpg', '', 'inherit', 'open', 'closed', '', 'services-05-233x300-jpg', '', '', '2025-11-15 05:09:33', '2025-11-15 05:09:33', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-05-233x300-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(437, 1, '2025-11-15 05:09:34', '2025-11-15 05:09:34', '', 'services 06 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'services-06-150x150-jpg', '', '', '2025-11-15 05:09:34', '2025-11-15 05:09:34', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-06-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(438, 1, '2025-11-15 05:09:35', '2025-11-15 05:09:35', '', 'services 06 233x300.jpg', '', 'inherit', 'open', 'closed', '', 'services-06-233x300-jpg', '', '', '2025-11-15 05:09:35', '2025-11-15 05:09:35', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-06-233x300-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(439, 1, '2025-11-15 05:09:36', '2025-11-15 05:09:36', '', 'services 07 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'services-07-150x150-jpg', '', '', '2025-11-15 05:09:36', '2025-11-15 05:09:36', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-07-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(440, 1, '2025-11-15 05:09:37', '2025-11-15 05:09:37', '', 'services 07 233x300.jpg', '', 'inherit', 'open', 'closed', '', 'services-07-233x300-jpg', '', '', '2025-11-15 05:09:37', '2025-11-15 05:09:37', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-07-233x300-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(441, 1, '2025-11-15 05:09:37', '2025-11-15 05:09:37', '', 'craft 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'craft-150x150-jpg', '', '', '2025-11-15 05:09:37', '2025-11-15 05:09:37', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/craft-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(442, 1, '2025-11-15 05:09:39', '2025-11-15 05:09:39', '', 'craft 300x233.jpg', '', 'inherit', 'open', 'closed', '', 'craft-300x233-jpg', '', '', '2025-11-15 05:09:39', '2025-11-15 05:09:39', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/craft-300x233-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(444, 1, '2025-11-15 05:09:40', '2025-11-15 05:09:40', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"home-bg","filename":"home-bg.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/home-bg.jpg","link":"https://multipurpose12.ziptemplates.top/home-bg/","alt":"","author":"2","description":"","caption":"","name":"home-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:42.000Z","modified":"2024-02-16T17:02:42.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"862404cc50","delete":"03fbad4fea","edit":"837f6c2456"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=12u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":266456,"filesizeHumanReadable":"260 KB","context":"","height":866,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-150x150-1.jpg","orientation":"landscape"},"medium":{"height":135,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-300x135-1.jpg","orientation":"landscape"},"large":{"height":462,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/home-bg-1024x462-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/home-bg.jpg","height":866,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(u002du002dast-global-color-0)","hColor":"var(u002du002dast-global-color-4)","hBackground":"var(u002du002dast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(u002du002dast-global-color-0)","btnBorderHColor":"var(u002du002dast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":18,"title":"services-05","filename":"services-05.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-05.jpg","link":"https://multipurpose12.ziptemplates.top/services-05/","alt":"","author":"2","description":"","caption":"","name":"services-05","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:51.000Z","modified":"2024-02-16T17:02:51.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"6dc3b153a0","delete":"ca19e462e2","edit":"380ca8a87e"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=18u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":53721,"filesizeHumanReadable":"52 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-05-150x150-1.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-05-233x300-1.jpg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-05.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":19,"title":"services-06","filename":"services-06.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-06.jpg","link":"https://multipurpose12.ziptemplates.top/services-06/","alt":"","author":"2","description":"","caption":"","name":"services-06","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:52.000Z","modified":"2024-02-16T17:02:52.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"c1147def7f","delete":"727fb46b52","edit":"1392039308"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=19u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":30456,"filesizeHumanReadable":"30 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-06-150x150-1.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-06-233x300-1.jpg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-06.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":20,"title":"services-07","filename":"services-07.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-07.jpg","link":"https://multipurpose12.ziptemplates.top/services-07/","alt":"","author":"2","description":"","caption":"","name":"services-07","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:53.000Z","modified":"2024-02-16T17:02:53.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"e15c69de36","delete":"cbabf754a1","edit":"541d43ea0a"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=20u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":52957,"filesizeHumanReadable":"52 KB","context":"","height":515,"width":400,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-07-150x150-1.jpg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-07-233x300-1.jpg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-07.jpg","height":515,"width":400,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(u002du002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(u002du002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(u002du002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"craft","filename":"craft.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/craft.jpg","link":"https://multipurpose12.ziptemplates.top/craft/","alt":"","author":"2","description":"","caption":"","name":"craft","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:35.000Z","modified":"2024-02-16T17:02:35.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"b5ad1b8f61","delete":"1b4a43d99d","edit":"a56b75b427"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=9u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":134746,"filesizeHumanReadable":"132 KB","context":"","height":688,"width":885,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/craft-150x150-1.jpg","orientation":"landscape"},"medium":{"height":233,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/craft-300x233-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/craft.jpg","height":688,"width":885,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/value-1024x480-1.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":22,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/value-1024x480-1.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/value-1024x480-1.jpg" alt="" class="uag-image-22" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'inherit', 'closed', 'closed', '', '226-revision-v1', '', '', '2025-11-15 05:09:40', '2025-11-15 05:09:40', '', 226, 'https://novationinteriors.com/wp/?p=444', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(445, 1, '2025-11-15 05:09:40', '2025-11-15 05:09:40', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":7,"title":"about-bg","filename":"about-bg.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg.jpg","link":"https://multipurpose12.ziptemplates.top/about-bg/","alt":"","author":"2","description":"","caption":"","name":"about-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:30.000Z","modified":"2024-02-16T17:02:30.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"58ab5e75c6","delete":"652875d37c","edit":"82b565a37d"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=7u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":273265,"filesizeHumanReadable":"267 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg-150x150.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg-300x91.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg-1024x310.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/about-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space Today</span><h1 class="uagb-ifb-title">Discover Novation Interiors'' Passion for Design</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"43961427","justifyContentDesktop":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":50,"rowGapMobile":55,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-43961427 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"91de6b3c","widthTablet":100,"directionDesktop":"row","directionTablet":"column","alignItemsDesktop":"flex-start","rowGapTablet":20,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":0,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-91de6b3c"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"","prefixHeadingTag":"h3","headingTag":"p","headSpace":15,"subHeadSpace":0,"block_id":"3e6b189a","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":20,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":15,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3e6b189a uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title-prefix">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-ifb-title">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div><p class="uagb-ifb-desc">At Novation Interiors, we take pride in the transformative results we''ve achieved for our clients. From stunning residential makeovers to innovative commercial designs, our meticulous approach ensures every project embodies the unique style and comfort of each client, resulting in beautiful and functional spaces.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/image {"block_id":"aa6e2cb7","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission-1024x400.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission-1024x400.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":13,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":350,"heightMobile":300,"naturalWidth":1024,"naturalHeight":400,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-aa6e2cb7 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission-1024x400.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission-1024x400.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/mission.jpg" alt="" class="uag-image-13" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"3f9cf3b8","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-3f9cf3b8"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Commitment</span><h3 class="uagb-ifb-title">Crafting Personalized Environments</h3></div><p class="uagb-ifb-desc">At Novation Interiors, our mission is to create personalized sanctuaries that reflect the distinct lifestyle and personality of our clients. With a blend of elegance and functionality, we aim to inspire and elevate every environment we touch.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"eba12409","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-eba12409 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Core Principles</span><h3 class="uagb-ifb-title">What Drives Us</h3></div><p class="uagb-ifb-desc">We value collaboration, innovation, and meticulous attention to detail. Our commitment to understanding each client''s unique needs ensures that we deliver designs that not only meet but exceed expectations, fostering lasting relationships built on trust and satisfaction.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6f310176","directionDesktop":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6f310176 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5962c3bc","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"center","paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"rowGapDesktop":40,"rowGapTablet":40,"rowGapMobile":45,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5962c3bc"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"31e33fee","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-31e33fee uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Common Inquiries</span><h2 class="uagb-ifb-title">Frequently Asked Questions</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/faq {"block_id":"0c5731f4","blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"rowsGap":20,"rowsGapTablet":20,"boxBgColor":"var(u002du002dast-global-color-5)","borderStyle":"","borderWidth":"","borderRadius":"","borderColor":"","vquestionPaddingMobile":15,"vquestionPaddingTablet":15,"vquestionPaddingDesktop":24,"hquestionPaddingMobile":15,"hquestionPaddingTablet":15,"hquestionPaddingDesktop":24,"iconColor":"var(u002du002dast-global-color-2)","iconActiveColor":"var(u002du002dast-global-color-0)","questionFontWeight":"400","questionFontSize":18,"questionFontSizeTablet":17,"questionFontSizeMobile":16,"icon":"angle-down","iconActive":"angle-up","iconAlign":"row-reverse","iconSize":20,"schema":"{u0022@contextu0022:u0022https://schema.orgu0022,u0022@typeu0022:u0022FAQPageu0022,u0022@idu0022:u0022https://multipurpose12.ziptemplates.top/about/u0022,u0022mainEntityu0022:[{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022What services does Novation Interiors offer?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022How does the design process work?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022Can you work within my budget?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.u0022}}]}","questionLeftPaddingTablet":15,"questionBottomPaddingTablet":15,"questionLeftPaddingDesktop":24,"questionBottomPaddingDesktop":24,"questionLeftPaddingMobile":15,"questionBottomPaddingMobile":15,"headingTag":"p","questionSpacingLink":true,"answerTopPadding":0,"answerRightPadding":24,"answerBottomPadding":24,"answerLeftPadding":24,"answerTopPaddingTablet":0,"answerRightPaddingTablet":15,"answerBottomPaddingTablet":15,"answerLeftPaddingTablet":15,"answerTopPaddingMobile":0,"answerRightPaddingMobile":15,"answerBottomPaddingMobile":15,"answerLeftPaddingMobile":15,"overallBorderTopWidth":1,"overallBorderLeftWidth":1,"overallBorderRightWidth":1,"overallBorderBottomWidth":1,"overallBorderTopLeftRadius":0,"overallBorderTopRightRadius":0,"overallBorderBottomLeftRadius":0,"overallBorderBottomRightRadius":0,"overallBorderStyle":"solid","overallBorderColor":"var(u002du002dast-global-color-6)","iconBgColor":""} -->\n<div class="wp-block-uagb-faq uagb-faq__outer-wrap uagb-block-0c5731f4 uagb-faq-icon-row-reverse uagb-faq-layout-accordion uagb-faq-expand-first-true uagb-faq-inactive-other-true uagb-faq__wrap uagb-buttons-layout-wrap uagb-faq-equal-height" data-faqtoggle="true" role="tablist"><!-- wp:uagb/faq-child {"block_id":"8a302e01","question":"What services does Novation Interiors offer?","answer":"Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-8a302e01" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">What services does Novation Interiors offer?</p></div><div class="uagb-faq-content"><p>Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"cef63c6f","question":"How does the design process work?","answer":"Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-cef63c6f" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">How does the design process work?</p></div><div class="uagb-faq-content"><p>Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"f6a73cb6","question":"Can you work within my budget?","answer":"Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-f6a73cb6" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">Can you work within my budget?</p></div><div class="uagb-faq-content"><p>Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.</p></div></div>\n<!-- /wp:uagb/faq-child --></div>\n<!-- /wp:uagb/faq --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"892c8053","widthDesktop":50,"widthTablet":50,"justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-892c8053"><!-- wp:uagb/image {"block_id":"8c89d0eb","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":11,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":500,"heightTablet":400,"heightMobile":300,"naturalWidth":600,"naturalHeight":640,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":50,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8c89d0eb wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/faq.jpg" alt="" class="uag-image-11" width="600" height="500" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'About', '', 'inherit', 'closed', 'closed', '', '227-revision-v1', '', '', '2025-11-15 05:09:40', '2025-11-15 05:09:40', '', 227, 'https://novationinteriors.com/wp/?p=445', 0, 'revision', '', 0),
(446, 1, '2025-11-15 05:09:41', '2025-11-15 05:09:41', '', 'about bg 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'about-bg-150x150-jpg', '', '', '2025-11-15 05:09:41', '2025-11-15 05:09:41', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(447, 1, '2025-11-15 05:09:42', '2025-11-15 05:09:42', '', 'about bg 300x91.jpg', '', 'inherit', 'open', 'closed', '', 'about-bg-300x91-jpg', '', '', '2025-11-15 05:09:42', '2025-11-15 05:09:42', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-300x91-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(448, 1, '2025-11-15 05:09:43', '2025-11-15 05:09:43', '', 'about bg 1024x310.jpg', '', 'inherit', 'open', 'closed', '', 'about-bg-1024x310-jpg', '', '', '2025-11-15 05:09:43', '2025-11-15 05:09:43', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-1024x310-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(449, 1, '2025-11-15 05:09:45', '2025-11-15 05:09:45', '', 'mission 1024x400.jpg', '', 'inherit', 'open', 'closed', '', 'mission-1024x400-jpg', '', '', '2025-11-15 05:09:45', '2025-11-15 05:09:45', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(450, 1, '2025-11-15 05:09:45', '2025-11-15 05:09:45', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":7,"title":"about-bg","filename":"about-bg.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/about-bg.jpg","link":"https://multipurpose12.ziptemplates.top/about-bg/","alt":"","author":"2","description":"","caption":"","name":"about-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:30.000Z","modified":"2024-02-16T17:02:30.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"58ab5e75c6","delete":"652875d37c","edit":"82b565a37d"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=7u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":273265,"filesizeHumanReadable":"267 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-150x150-1.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-300x91-1.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/about-bg-1024x310-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/about-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space Today</span><h1 class="uagb-ifb-title">Discover Novation Interiors'' Passion for Design</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"43961427","justifyContentDesktop":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":50,"rowGapMobile":55,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-43961427 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"91de6b3c","widthTablet":100,"directionDesktop":"row","directionTablet":"column","alignItemsDesktop":"flex-start","rowGapTablet":20,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":0,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-91de6b3c"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"","prefixHeadingTag":"h3","headingTag":"p","headSpace":15,"subHeadSpace":0,"block_id":"3e6b189a","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":20,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":15,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3e6b189a uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title-prefix">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-ifb-title">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div><p class="uagb-ifb-desc">At Novation Interiors, we take pride in the transformative results we''ve achieved for our clients. From stunning residential makeovers to innovative commercial designs, our meticulous approach ensures every project embodies the unique style and comfort of each client, resulting in beautiful and functional spaces.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/image {"block_id":"aa6e2cb7","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/mission.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":13,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":350,"heightMobile":300,"naturalWidth":1024,"naturalHeight":400,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-aa6e2cb7 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/mission.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/mission.jpg" alt="" class="uag-image-13" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"3f9cf3b8","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-3f9cf3b8"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Commitment</span><h3 class="uagb-ifb-title">Crafting Personalized Environments</h3></div><p class="uagb-ifb-desc">At Novation Interiors, our mission is to create personalized sanctuaries that reflect the distinct lifestyle and personality of our clients. With a blend of elegance and functionality, we aim to inspire and elevate every environment we touch.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"eba12409","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-eba12409 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Core Principles</span><h3 class="uagb-ifb-title">What Drives Us</h3></div><p class="uagb-ifb-desc">We value collaboration, innovation, and meticulous attention to detail. Our commitment to understanding each client''s unique needs ensures that we deliver designs that not only meet but exceed expectations, fostering lasting relationships built on trust and satisfaction.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6f310176","directionDesktop":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6f310176 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5962c3bc","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"center","paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"rowGapDesktop":40,"rowGapTablet":40,"rowGapMobile":45,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5962c3bc"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"31e33fee","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-31e33fee uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Common Inquiries</span><h2 class="uagb-ifb-title">Frequently Asked Questions</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/faq {"block_id":"0c5731f4","blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"rowsGap":20,"rowsGapTablet":20,"boxBgColor":"var(u002du002dast-global-color-5)","borderStyle":"","borderWidth":"","borderRadius":"","borderColor":"","vquestionPaddingMobile":15,"vquestionPaddingTablet":15,"vquestionPaddingDesktop":24,"hquestionPaddingMobile":15,"hquestionPaddingTablet":15,"hquestionPaddingDesktop":24,"iconColor":"var(u002du002dast-global-color-2)","iconActiveColor":"var(u002du002dast-global-color-0)","questionFontWeight":"400","questionFontSize":18,"questionFontSizeTablet":17,"questionFontSizeMobile":16,"icon":"angle-down","iconActive":"angle-up","iconAlign":"row-reverse","iconSize":20,"schema":"{u0022@contextu0022:u0022https://schema.orgu0022,u0022@typeu0022:u0022FAQPageu0022,u0022@idu0022:u0022https://multipurpose12.ziptemplates.top/about/u0022,u0022mainEntityu0022:[{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022What services does Novation Interiors offer?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022How does the design process work?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022Can you work within my budget?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.u0022}}]}","questionLeftPaddingTablet":15,"questionBottomPaddingTablet":15,"questionLeftPaddingDesktop":24,"questionBottomPaddingDesktop":24,"questionLeftPaddingMobile":15,"questionBottomPaddingMobile":15,"headingTag":"p","questionSpacingLink":true,"answerTopPadding":0,"answerRightPadding":24,"answerBottomPadding":24,"answerLeftPadding":24,"answerTopPaddingTablet":0,"answerRightPaddingTablet":15,"answerBottomPaddingTablet":15,"answerLeftPaddingTablet":15,"answerTopPaddingMobile":0,"answerRightPaddingMobile":15,"answerBottomPaddingMobile":15,"answerLeftPaddingMobile":15,"overallBorderTopWidth":1,"overallBorderLeftWidth":1,"overallBorderRightWidth":1,"overallBorderBottomWidth":1,"overallBorderTopLeftRadius":0,"overallBorderTopRightRadius":0,"overallBorderBottomLeftRadius":0,"overallBorderBottomRightRadius":0,"overallBorderStyle":"solid","overallBorderColor":"var(u002du002dast-global-color-6)","iconBgColor":""} -->\n<div class="wp-block-uagb-faq uagb-faq__outer-wrap uagb-block-0c5731f4 uagb-faq-icon-row-reverse uagb-faq-layout-accordion uagb-faq-expand-first-true uagb-faq-inactive-other-true uagb-faq__wrap uagb-buttons-layout-wrap uagb-faq-equal-height" data-faqtoggle="true" role="tablist"><!-- wp:uagb/faq-child {"block_id":"8a302e01","question":"What services does Novation Interiors offer?","answer":"Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-8a302e01" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">What services does Novation Interiors offer?</p></div><div class="uagb-faq-content"><p>Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"cef63c6f","question":"How does the design process work?","answer":"Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-cef63c6f" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">How does the design process work?</p></div><div class="uagb-faq-content"><p>Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"f6a73cb6","question":"Can you work within my budget?","answer":"Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-f6a73cb6" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">Can you work within my budget?</p></div><div class="uagb-faq-content"><p>Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.</p></div></div>\n<!-- /wp:uagb/faq-child --></div>\n<!-- /wp:uagb/faq --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"892c8053","widthDesktop":50,"widthTablet":50,"justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-892c8053"><!-- wp:uagb/image {"block_id":"8c89d0eb","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":11,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":500,"heightTablet":400,"heightMobile":300,"naturalWidth":600,"naturalHeight":640,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":50,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8c89d0eb wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/faq.jpg" alt="" class="uag-image-11" width="600" height="500" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'About', '', 'inherit', 'closed', 'closed', '', '227-revision-v1', '', '', '2025-11-15 05:09:45', '2025-11-15 05:09:45', '', 227, 'https://novationinteriors.com/wp/?p=450', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(451, 1, '2025-11-15 05:09:45', '2025-11-15 05:09:45', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":1000,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":21,"title":"services-bg","filename":"services-bg.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-bg.jpg","link":"https://multipurpose12.ziptemplates.top/services-bg/","alt":"","author":"2","description":"","caption":"","name":"services-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:56.000Z","modified":"2024-02-16T17:02:56.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"fa37a20000","delete":"937fcb746f","edit":"9ac3756fbf"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=21u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":368945,"filesizeHumanReadable":"360 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-bg-150x150.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-bg-300x91.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-bg-1024x310.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Explore Our Unique Design Offerings</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"48009aef","directionDesktop":"row","alignItemsDesktop":"flex-start","justifyContentDesktop":"space-between","wrapDesktop":"wrap","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":55,"rowGapMobile":55,"columnGapDesktop":0,"columnGapTablet":0,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-48009aef alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5250fd34","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5250fd34"><!-- wp:uagb/container {"block_id":"e2a91d97","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-e2a91d97"><!-- wp:uagb/image {"block_id":"8590ae9a","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8590ae9a wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-01.jpg" alt="" class="uag-image-14" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"3c7afed0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3c7afed0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01.</span><h2 class="uagb-ifb-title">Residential Design Services</h2></div><p class="uagb-ifb-desc">Our residential design services focus on creating inviting, personalized environments that resonate with your lifestyle. We collaborate closely with clients to understand their vision and preferences, ensuring every space is thoughtfully constructed. From conceptualization to execution, we meticulously select colors, materials, and furnishings to reflect your individual aesthetic. Each project is treated with the utmost care, ensuring that your home becomes an inspiring sanctuary tailored just for you.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"39480438","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-39480438"><!-- wp:uagb/image {"block_id":"c0169bf8","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":15,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-c0169bf8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-02.jpg" alt="" class="uag-image-15" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"57760dfc","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-57760dfc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02.</span><h2 class="uagb-ifb-title">Commercial Design Solutions</h2></div><p class="uagb-ifb-desc">Our commercial design solutions are crafted to enhance motivation and productivity within your workplace. Understanding the significance of a well-designed environment, we work to create spaces that are both functional and visually appealing. By harmonizing your brand identity with user-centric design, we ensure that every detail contributes to a positive experience for both employees and clients. Our approach is collaborative, innovative, and tailored to meet the unique needs of your business, whether it''s an office, retail space, or hospitality venue.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"58944a93","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"center","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-58944a93"><!-- wp:uagb/container {"block_id":"62a31330","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-62a31330"><!-- wp:uagb/image {"block_id":"28a63686","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":16,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-28a63686 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-03.jpg" alt="" class="uag-image-16" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"b870fe7d","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-b870fe7d uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03.</span><h2 class="uagb-ifb-title">Consultation Services</h2></div><p class="uagb-ifb-desc">Our consultation services provide expertise and guidance for your design journey. Whether you''re starting from scratch or need help refining an existing concept, our team is here to support you. We offer tailored advice on space planning, color palettes, material selections, and more. Our collaborative approach ensures you feel confident and informed every step of the way. Together, we''ll develop a roadmap to achieve a harmonious and stylish space that truly embodies your vision.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a474bc71","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topMarginDesktop":-126,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":-64,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginTypeTablet":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-a474bc71"><!-- wp:uagb/image {"block_id":"616a26fd","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg","urlTablet":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg","urlMobile":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":17,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-616a26fd wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg ,https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg 780w, https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg 360w" sizes="(max-width: 480px) 150px" src="https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/services-04.jpg" alt="" class="uag-image-17" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"65a70ccb","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-65a70ccb uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04.</span><h2 class="uagb-ifb-title">Custom Furniture Design</h2></div><p class="uagb-ifb-desc">Our custom furniture design service creates unique pieces that perfectly match your style and functional needs. We collaborate with you to craft furniture solutions tailored to your specifications, ensuring they fit seamlessly into your spaces. Each piece is designed with an emphasis on both aesthetics and usability, ensuring that your selections not only look stunning but also enhance your everyday living. Experience the blend of craftsmanship and creativity that makes your furniture truly one-of-a-kind.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Services', '', 'inherit', 'closed', 'closed', '', '228-revision-v1', '', '', '2025-11-15 05:09:45', '2025-11-15 05:09:45', '', 228, 'https://novationinteriors.com/wp/?p=451', 0, 'revision', '', 0),
(452, 1, '2025-11-15 05:09:46', '2025-11-15 05:09:46', '', 'services bg 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'services-bg-150x150-jpg', '', '', '2025-11-15 05:09:46', '2025-11-15 05:09:46', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(453, 1, '2025-11-15 05:09:47', '2025-11-15 05:09:47', '', 'services bg 300x91.jpg', '', 'inherit', 'open', 'closed', '', 'services-bg-300x91-jpg', '', '', '2025-11-15 05:09:47', '2025-11-15 05:09:47', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-300x91-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(454, 1, '2025-11-15 05:09:48', '2025-11-15 05:09:48', '', 'services bg 1024x310.jpg', '', 'inherit', 'open', 'closed', '', 'services-bg-1024x310-jpg', '', '', '2025-11-15 05:09:48', '2025-11-15 05:09:48', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-1024x310-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(455, 1, '2025-11-15 05:09:48', '2025-11-15 05:09:48', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":1000,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":21,"title":"services-bg","filename":"services-bg.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-bg.jpg","link":"https://multipurpose12.ziptemplates.top/services-bg/","alt":"","author":"2","description":"","caption":"","name":"services-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:56.000Z","modified":"2024-02-16T17:02:56.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"fa37a20000","delete":"937fcb746f","edit":"9ac3756fbf"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=21u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":368945,"filesizeHumanReadable":"360 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-150x150-1.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-300x91-1.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/services-bg-1024x310-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Explore Our Unique Design Offerings</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"48009aef","directionDesktop":"row","alignItemsDesktop":"flex-start","justifyContentDesktop":"space-between","wrapDesktop":"wrap","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":55,"rowGapMobile":55,"columnGapDesktop":0,"columnGapTablet":0,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-48009aef alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5250fd34","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5250fd34"><!-- wp:uagb/container {"block_id":"e2a91d97","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-e2a91d97"><!-- wp:uagb/image {"block_id":"8590ae9a","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8590ae9a wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-01.jpg" alt="" class="uag-image-14" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"3c7afed0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3c7afed0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01.</span><h2 class="uagb-ifb-title">Residential Design Services</h2></div><p class="uagb-ifb-desc">Our residential design services focus on creating inviting, personalized environments that resonate with your lifestyle. We collaborate closely with clients to understand their vision and preferences, ensuring every space is thoughtfully constructed. From conceptualization to execution, we meticulously select colors, materials, and furnishings to reflect your individual aesthetic. Each project is treated with the utmost care, ensuring that your home becomes an inspiring sanctuary tailored just for you.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"39480438","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-39480438"><!-- wp:uagb/image {"block_id":"c0169bf8","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":15,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-c0169bf8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-02.jpg" alt="" class="uag-image-15" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"57760dfc","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-57760dfc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02.</span><h2 class="uagb-ifb-title">Commercial Design Solutions</h2></div><p class="uagb-ifb-desc">Our commercial design solutions are crafted to enhance motivation and productivity within your workplace. Understanding the significance of a well-designed environment, we work to create spaces that are both functional and visually appealing. By harmonizing your brand identity with user-centric design, we ensure that every detail contributes to a positive experience for both employees and clients. Our approach is collaborative, innovative, and tailored to meet the unique needs of your business, whether it''s an office, retail space, or hospitality venue.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"58944a93","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"center","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-58944a93"><!-- wp:uagb/container {"block_id":"62a31330","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-62a31330"><!-- wp:uagb/image {"block_id":"28a63686","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":16,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-28a63686 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-03.jpg" alt="" class="uag-image-16" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"b870fe7d","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-b870fe7d uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03.</span><h2 class="uagb-ifb-title">Consultation Services</h2></div><p class="uagb-ifb-desc">Our consultation services provide expertise and guidance for your design journey. Whether you''re starting from scratch or need help refining an existing concept, our team is here to support you. We offer tailored advice on space planning, color palettes, material selections, and more. Our collaborative approach ensures you feel confident and informed every step of the way. Together, we''ll develop a roadmap to achieve a harmonious and stylish space that truly embodies your vision.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a474bc71","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topMarginDesktop":-126,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":-64,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginTypeTablet":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-a474bc71"><!-- wp:uagb/image {"block_id":"616a26fd","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg","align":"left","alignTablet":"left","alignMobile":"left","id":17,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft"} -->\n<div class="wp-block-uagb-image alignleft uagb-block-616a26fd wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/services-04.jpg" alt="" class="uag-image-17" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"65a70ccb","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-65a70ccb uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04.</span><h2 class="uagb-ifb-title">Custom Furniture Design</h2></div><p class="uagb-ifb-desc">Our custom furniture design service creates unique pieces that perfectly match your style and functional needs. We collaborate with you to craft furniture solutions tailored to your specifications, ensuring they fit seamlessly into your spaces. Each piece is designed with an emphasis on both aesthetics and usability, ensuring that your selections not only look stunning but also enhance your everyday living. Experience the blend of craftsmanship and creativity that makes your furniture truly one-of-a-kind.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Services', '', 'inherit', 'closed', 'closed', '', '228-revision-v1', '', '', '2025-11-15 05:09:48', '2025-11-15 05:09:48', '', 228, 'https://novationinteriors.com/wp/?p=455', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(456, 1, '2025-11-15 05:09:48', '2025-11-15 05:09:48', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":8,"title":"contact-bg","filename":"contact-bg.jpg","url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/contact-bg.jpg","link":"https://multipurpose12.ziptemplates.top/contact-bg/","alt":"","author":"2","description":"","caption":"","name":"contact-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:33.000Z","modified":"2024-02-16T17:02:33.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://multipurpose12.ziptemplates.top/wp-includes/images/media/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"783f78e0ce","delete":"e1670b9556","edit":"6f5479f529"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=8u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":642714,"filesizeHumanReadable":"628 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/contact-bg-150x150.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/contact-bg-300x91.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/contact-bg-1024x310.jpg","orientation":"landscape"},"full":{"url":"https://multipurpose12.ziptemplates.top/wp-content/uploads/2024/02/contact-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get in Touch</span><h1 class="uagb-ifb-title">Connect with Novation Interiors Today</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5504678b","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":60,"columnGapTablet":20,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5504678b alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"251cd539","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-251cd539"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><p class="uagb-ifb-title">Address</p></div><p class="uagb-ifb-desc">Navi Mumbai</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c9fbc81d","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-c9fbc81d"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"af7bb653","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-af7bb653 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><p class="uagb-ifb-title">Call Us</p></div><p class="uagb-ifb-desc">9320464646/7045598686</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"ebef70d3","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-ebef70d3"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"da07b720","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-da07b720 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><p class="uagb-ifb-title">Email</p></div><p class="uagb-ifb-desc">designer@novationinteriors.com</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5c0bd371","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"rowGapDesktop":20,"rowGapTablet":20,"rowGapMobile":20,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5c0bd371"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":0,"subHeadSpace":0,"block_id":"e7f06968","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e7f06968 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04</span><p class="uagb-ifb-title">Social Media</p></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/icon-list {"block_id":"64139ed7","classMigrate":true,"childMigrate":true,"alignTablet":"left","alignMobile":"center","gap":20,"size":20,"sizeMobile":20,"sizeTablet":19,"hideLabel":true,"icon_layout":"horizontal","iconColor":"var(u002du002dast-global-color-2)","iconHoverColor":"var(u002du002dast-global-color-0)"} -->\n<div class="wp-block-uagb-icon-list uagb-block-64139ed7"><div class="uagb-icon-list__wrap"><!-- wp:uagb/icon-list-child {"block_id":"6432aeab","hideLabel":true,"icon":"facebook","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-6432aeab"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"2fc84443","hideLabel":true,"icon":"twitter","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-2fc84443"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.4 151.7c.325 4.548 .325 9.097 .325 13.65 0 138.7-105.6 298.6-298.6 298.6-59.45 0-114.7-17.22-161.1-47.11 8.447 .974 16.57 1.299 25.34 1.299 49.06 0 94.21-16.57 130.3-44.83-46.13-.975-84.79-31.19-98.11-72.77 6.498 .974 12.99 1.624 19.82 1.624 9.421 0 18.84-1.3 27.61-3.573-48.08-9.747-84.14-51.98-84.14-102.1v-1.299c13.97 7.797 30.21 12.67 47.43 13.32-28.26-18.84-46.78-51.01-46.78-87.39 0-19.49 5.197-37.36 14.29-52.95 51.65 63.67 129.3 105.3 216.4 109.8-1.624-7.797-2.599-15.92-2.599-24.04 0-57.83 46.78-104.9 104.9-104.9 30.21 0 57.5 12.67 76.67 33.14 23.72-4.548 46.46-13.32 66.6-25.34-7.798 24.37-24.37 44.83-46.13 57.83 21.12-2.273 41.58-8.122 60.43-16.24-14.29 20.79-32.16 39.31-52.63 54.25z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"e8e66f77","hideLabel":true,"icon":"instagram","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-e8e66f77"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"75ad829c","hideLabel":true,"icon":"linkedin","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-75ad829c"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"1e528de7","hideLabel":true,"icon":"youtube","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-1e528de7"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.7 124.1c-6.281-23.65-24.79-42.28-48.28-48.6C458.8 64 288 64 288 64S117.2 64 74.63 75.49c-23.5 6.322-42 24.95-48.28 48.6-11.41 42.87-11.41 132.3-11.41 132.3s0 89.44 11.41 132.3c6.281 23.65 24.79 41.5 48.28 47.82C117.2 448 288 448 288 448s170.8 0 213.4-11.49c23.5-6.321 42-24.17 48.28-47.82 11.41-42.87 11.41-132.3 11.41-132.3s0-89.44-11.41-132.3zm-317.5 213.5V175.2l142.7 81.21-142.7 81.2z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child --></div></div>\n<!-- /wp:uagb/icon-list --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7dfed97e","directionDesktop":"row","directionTablet":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","wrapTablet":"nowrap","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-7dfed97e alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/google-map {"block_id":"e1c989be","height":650,"heightTablet":500,"heightMobile":350} /-->\n\n<!-- wp:uagb/container {"block_id":"d0cb7be2","widthDesktop":50,"widthTablet":50,"directionTablet":"column","directionMobile":"column","alignItemsTablet":"flex-start","justifyContentTablet":"center","wrapTablet":"nowrap","wrapMobile":"nowrap","rowGapDesktop":40,"rowGapTablet":30,"rowGapMobile":35,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-d0cb7be2"><!-- wp:uagb/advanced-heading {"block_id":"f35113b2","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-f35113b2"><h2 class="uagb-heading-text">We’d Love to Hear You</h2><p class="uagb-desc-text">Reach out to us for personalized design solutions tailored to your unique needs and style.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:shortcode -->\n[sureforms id=''419'']\n<!-- /wp:shortcode --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Contact', '', 'inherit', 'closed', 'closed', '', '229-revision-v1', '', '', '2025-11-15 05:09:48', '2025-11-15 05:09:48', '', 229, 'https://novationinteriors.com/wp/?p=456', 0, 'revision', '', 0),
(457, 1, '2025-11-15 05:09:49', '2025-11-15 05:09:49', '', 'contact bg 150x150.jpg', '', 'inherit', 'open', 'closed', '', 'contact-bg-150x150-jpg', '', '', '2025-11-15 05:09:49', '2025-11-15 05:09:49', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-150x150-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(458, 1, '2025-11-15 05:09:50', '2025-11-15 05:09:50', '', 'contact bg 300x91.jpg', '', 'inherit', 'open', 'closed', '', 'contact-bg-300x91-jpg', '', '', '2025-11-15 05:09:50', '2025-11-15 05:09:50', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-300x91-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(459, 1, '2025-11-15 05:09:52', '2025-11-15 05:09:52', '', 'contact bg 1024x310.jpg', '', 'inherit', 'open', 'closed', '', 'contact-bg-1024x310-jpg', '', '', '2025-11-15 05:09:52', '2025-11-15 05:09:52', '', 0, 'https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-1024x310-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(460, 1, '2025-11-15 05:09:52', '2025-11-15 05:09:52', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":8,"title":"contact-bg","filename":"contact-bg.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/contact-bg.jpg","link":"https://multipurpose12.ziptemplates.top/contact-bg/","alt":"","author":"2","description":"","caption":"","name":"contact-bg","status":"inherit","uploadedTo":0,"date":"2024-02-16T17:02:33.000Z","modified":"2024-02-16T17:02:33.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 16, 2024","nonces":{"update":"783f78e0ce","delete":"e1670b9556","edit":"6f5479f529"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=8u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":642714,"filesizeHumanReadable":"628 KB","context":"","height":581,"width":1920,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-150x150-1.jpg","orientation":"landscape"},"medium":{"height":91,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-300x91-1.jpg","orientation":"landscape"},"large":{"height":310,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/contact-bg-1024x310-1.jpg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/contact-bg.jpg","height":581,"width":1920,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(u002du002dast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get in Touch</span><h1 class="uagb-ifb-title">Connect with Novation Interiors Today</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5504678b","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":60,"columnGapTablet":20,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5504678b alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"251cd539","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-251cd539"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><p class="uagb-ifb-title">Address</p></div><p class="uagb-ifb-desc">Navi Mumbai</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c9fbc81d","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-c9fbc81d"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"af7bb653","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-af7bb653 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><p class="uagb-ifb-title">Call Us</p></div><p class="uagb-ifb-desc">9320464646/7045598686</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"ebef70d3","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(u002du002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-ebef70d3"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"da07b720","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-da07b720 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><p class="uagb-ifb-title">Email</p></div><p class="uagb-ifb-desc">designer@novationinteriors.com</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5c0bd371","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"rowGapDesktop":20,"rowGapTablet":20,"rowGapMobile":20,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5c0bd371"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(u002du002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(u002du002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":0,"subHeadSpace":0,"block_id":"e7f06968","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e7f06968 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04</span><p class="uagb-ifb-title">Social Media</p></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/icon-list {"block_id":"64139ed7","classMigrate":true,"childMigrate":true,"alignTablet":"left","alignMobile":"center","gap":20,"size":20,"sizeMobile":20,"sizeTablet":19,"hideLabel":true,"icon_layout":"horizontal","iconColor":"var(u002du002dast-global-color-2)","iconHoverColor":"var(u002du002dast-global-color-0)"} -->\n<div class="wp-block-uagb-icon-list uagb-block-64139ed7"><div class="uagb-icon-list__wrap"><!-- wp:uagb/icon-list-child {"block_id":"6432aeab","hideLabel":true,"icon":"facebook","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-6432aeab"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"2fc84443","hideLabel":true,"icon":"twitter","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-2fc84443"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.4 151.7c.325 4.548 .325 9.097 .325 13.65 0 138.7-105.6 298.6-298.6 298.6-59.45 0-114.7-17.22-161.1-47.11 8.447 .974 16.57 1.299 25.34 1.299 49.06 0 94.21-16.57 130.3-44.83-46.13-.975-84.79-31.19-98.11-72.77 6.498 .974 12.99 1.624 19.82 1.624 9.421 0 18.84-1.3 27.61-3.573-48.08-9.747-84.14-51.98-84.14-102.1v-1.299c13.97 7.797 30.21 12.67 47.43 13.32-28.26-18.84-46.78-51.01-46.78-87.39 0-19.49 5.197-37.36 14.29-52.95 51.65 63.67 129.3 105.3 216.4 109.8-1.624-7.797-2.599-15.92-2.599-24.04 0-57.83 46.78-104.9 104.9-104.9 30.21 0 57.5 12.67 76.67 33.14 23.72-4.548 46.46-13.32 66.6-25.34-7.798 24.37-24.37 44.83-46.13 57.83 21.12-2.273 41.58-8.122 60.43-16.24-14.29 20.79-32.16 39.31-52.63 54.25z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"e8e66f77","hideLabel":true,"icon":"instagram","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-e8e66f77"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"75ad829c","hideLabel":true,"icon":"linkedin","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-75ad829c"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"1e528de7","hideLabel":true,"icon":"youtube","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-1e528de7"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.7 124.1c-6.281-23.65-24.79-42.28-48.28-48.6C458.8 64 288 64 288 64S117.2 64 74.63 75.49c-23.5 6.322-42 24.95-48.28 48.6-11.41 42.87-11.41 132.3-11.41 132.3s0 89.44 11.41 132.3c6.281 23.65 24.79 41.5 48.28 47.82C117.2 448 288 448 288 448s170.8 0 213.4-11.49c23.5-6.321 42-24.17 48.28-47.82 11.41-42.87 11.41-132.3 11.41-132.3s0-89.44-11.41-132.3zm-317.5 213.5V175.2l142.7 81.21-142.7 81.2z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child --></div></div>\n<!-- /wp:uagb/icon-list --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7dfed97e","directionDesktop":"row","directionTablet":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","wrapTablet":"nowrap","backgroundType":"color","backgroundColor":"var(u002du002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-7dfed97e alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/google-map {"block_id":"e1c989be","height":650,"heightTablet":500,"heightMobile":350} /-->\n\n<!-- wp:uagb/container {"block_id":"d0cb7be2","widthDesktop":50,"widthTablet":50,"directionTablet":"column","directionMobile":"column","alignItemsTablet":"flex-start","justifyContentTablet":"center","wrapTablet":"nowrap","wrapMobile":"nowrap","rowGapDesktop":40,"rowGapTablet":30,"rowGapMobile":35,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-d0cb7be2"><!-- wp:uagb/advanced-heading {"block_id":"f35113b2","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-f35113b2"><h2 class="uagb-heading-text">We’d Love to Hear You</h2><p class="uagb-desc-text">Reach out to us for personalized design solutions tailored to your unique needs and style.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:shortcode -->\n[sureforms id=''419'']\n<!-- /wp:shortcode --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Contact', '', 'inherit', 'closed', 'closed', '', '229-revision-v1', '', '', '2025-11-15 05:09:52', '2025-11-15 05:09:52', '', 229, 'https://novationinteriors.com/wp/?p=460', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(461, 1, '2025-11-15 05:09:52', '2025-11-15 05:09:52', '<!-- wp:page-list /-->', 'Navigation', '', 'inherit', 'closed', 'closed', '', '225-revision-v1', '', '', '2025-11-15 05:09:52', '2025-11-15 05:09:52', '', 225, 'https://novationinteriors.com/wp/?p=461', 0, 'revision', '', 0),
(462, 1, '2025-11-15 05:09:53', '2025-11-15 05:09:53', '<!-- wp:uagb/container {"block_id":"b684870f","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":15,"title":"pexels photo 827518","filename":"pexels-photo-827518.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-827518/","alt":"Inviting café corner with lush plants and cozy seating, perfect for relaxation.","author":"1","description":"","caption":"","name":"pexels-photo-827518","status":"inherit","uploadedTo":0,"date":1763183297000,"modified":1763183297000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"33c5392120","delete":"b984f8bf77","edit":"bbafda37ed"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=15&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":159205,"filesizeHumanReadable":"155 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-827518.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":120,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-b684870f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":4,"block_id":"f83a47d8","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"/contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":12,"subHeadLeftMargin":12,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f83a47d8 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get Started Today</span><h2 class="uagb-ifb-title">Transform Your Space with Novation Interiors Now!</h2></div><p class="uagb-ifb-desc">Contact us today for a consultation and let your dream space become a reality.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="/contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->', 'Footer CTA', '', 'inherit', 'closed', 'closed', '', '178-revision-v1', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 178, 'https://novationinteriors.com/wp/?p=462', 0, 'revision', '', 0),
(463, 1, '2025-11-15 05:09:53', '2025-11-15 05:09:53', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"pexels photo 1643383","filename":"pexels-photo-1643383.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1643383/","alt":"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.","author":"1","description":"","caption":"","name":"pexels-photo-1643383","status":"inherit","uploadedTo":0,"date":1763183289000,"modified":1763183289000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"e841509ba4","delete":"47dc4a1487","edit":"60c3bad976"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=9&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":118833,"filesizeHumanReadable":"116 KB","context":"","height":843,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-150x150.jpeg","orientation":"landscape"},"medium":{"height":198,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-300x198.jpeg","orientation":"landscape"},"large":{"height":674,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-1024x674.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","height":843,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","showCtaIcon":false,"ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Get Started</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(--ast-global-color-0)","hColor":"var(--ast-global-color-4)","hBackground":"var(--ast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(--ast-global-color-0)","btnBorderHColor":"var(--ast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"pexels photo 1457842","filename":"pexels-photo-1457842.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457842/","alt":"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.","author":"1","description":"","caption":"","name":"pexels-photo-1457842","status":"inherit","uploadedTo":0,"date":1763183291000,"modified":1763183291000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"85313d1393","delete":"e4dfa51205","edit":"689316abd3"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=10&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":92286,"filesizeHumanReadable":"90 KB","context":"","height":777,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-150x150.jpeg","orientation":"landscape"},"medium":{"height":182,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-300x182.jpeg","orientation":"landscape"},"large":{"height":622,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-1024x622.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","height":777,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(--ast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":11,"title":"pexels photo 1571460","filename":"pexels-photo-1571460.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571460/","alt":"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.","author":"1","description":"","caption":"","name":"pexels-photo-1571460","status":"inherit","uploadedTo":0,"date":1763183292000,"modified":1763183292000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"582124632f","delete":"11f11d919f","edit":"438ed46680"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=11&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":119312,"filesizeHumanReadable":"117 KB","context":"","height":823,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-150x150.jpeg","orientation":"landscape"},"medium":{"height":193,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-300x193.jpeg","orientation":"landscape"},"large":{"height":658,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-1024x658.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","height":823,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(--ast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"pexels photo 1571453","filename":"pexels-photo-1571453.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571453/","alt":"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.","author":"1","description":"","caption":"","name":"pexels-photo-1571453","status":"inherit","uploadedTo":0,"date":1763183293000,"modified":1763183293000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"6305ddf4b9","delete":"6df5e17e48","edit":"81a5930b47"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=12&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":133044,"filesizeHumanReadable":"130 KB","context":"","height":855,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-150x150.jpeg","orientation":"landscape"},"medium":{"height":200,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-300x200.jpeg","orientation":"landscape"},"large":{"height":684,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-1024x684.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","height":855,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(--ast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(--ast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(--ast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(--ast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(--ast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(--ast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(--ast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(--ast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(--ast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":13,"title":"pexels photo 271816","filename":"pexels-photo-271816.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-271816/","alt":"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.","author":"1","description":"","caption":"","name":"pexels-photo-271816","status":"inherit","uploadedTo":0,"date":1763183295000,"modified":1763183295000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"c439696799","delete":"721d23a9e8","edit":"da460ab366"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=13&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":102369,"filesizeHumanReadable":"100 KB","context":"","height":720,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-150x150.jpeg","orientation":"landscape"},"medium":{"height":169,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-300x169.jpeg","orientation":"landscape"},"large":{"height":576,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-1024x576.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","height":720,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;" alt=""><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Inviting living room interior featuring modern design with cozy furnishings and stylish decor."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2024/02/value.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg" alt="Inviting living room interior featuring modern design with cozy furnishings and stylish decor." class="uag-image-14" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'inherit', 'closed', 'closed', '', '226-revision-v1', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 226, 'https://novationinteriors.com/wp/?p=463', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(464, 1, '2025-11-15 05:09:53', '2025-11-15 05:09:53', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":16,"title":"pexels photo 1129413","filename":"pexels-photo-1129413.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1129413/","alt":"Cozy indoor space with rustic decor, warm lighting, and natural elements.","author":"1","description":"","caption":"","name":"pexels-photo-1129413","status":"inherit","uploadedTo":0,"date":1763183298000,"modified":1763183298000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"3fdafdeed0","delete":"fc83dc114e","edit":"693a9bf014"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=16&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":85664,"filesizeHumanReadable":"84 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1129413.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Get in Touch</span><h1 class="uagb-ifb-title">Connect with Novation Interiors Today</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5504678b","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":60,"columnGapTablet":20,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5504678b alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"251cd539","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-251cd539"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><p class="uagb-ifb-title">Address</p></div><p class="uagb-ifb-desc">Navi Mumbai</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c9fbc81d","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-c9fbc81d"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"af7bb653","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-af7bb653 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><p class="uagb-ifb-title">Call Us</p></div><p class="uagb-ifb-desc">9320464646/7045598686</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"ebef70d3","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rightPaddingDesktop":60,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":20,"topPaddingMobile":0,"bottomPaddingMobile":40,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"rowGapDesktop":5,"rowGapTablet":5,"rowGapMobile":5,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":1,"containerBorderBottomWidthTablet":0,"containerBorderTopWidthMobile":0,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(--ast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-ebef70d3"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":15,"subHeadSpace":0,"block_id":"da07b720","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":5,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-da07b720 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><p class="uagb-ifb-title">Email</p></div><p class="uagb-ifb-desc">designer@novationinteriors.com</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5c0bd371","widthDesktop":25,"widthTablet":25,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"rowGapDesktop":20,"rowGapTablet":20,"rowGapMobile":20,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5c0bd371"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"center","headingColor":"var(--ast-global-color-2)","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"p","headFontSize":30,"headFontSizeTablet":20,"headFontSizeMobile":20,"headFontWeight":"400","headSpace":0,"subHeadSpace":0,"block_id":"e7f06968","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":5,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e7f06968 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04</span><p class="uagb-ifb-title">Social Media</p></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/icon-list {"block_id":"64139ed7","classMigrate":true,"childMigrate":true,"alignTablet":"left","alignMobile":"center","gap":20,"size":20,"sizeMobile":20,"sizeTablet":19,"hideLabel":true,"icon_layout":"horizontal","iconColor":"var(--ast-global-color-2)","iconHoverColor":"var(--ast-global-color-0)"} -->\n<div class="wp-block-uagb-icon-list uagb-block-64139ed7"><div class="uagb-icon-list__wrap"><!-- wp:uagb/icon-list-child {"block_id":"6432aeab","hideLabel":true,"icon":"facebook","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-6432aeab"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"2fc84443","hideLabel":true,"icon":"twitter","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-2fc84443"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.4 151.7c.325 4.548 .325 9.097 .325 13.65 0 138.7-105.6 298.6-298.6 298.6-59.45 0-114.7-17.22-161.1-47.11 8.447 .974 16.57 1.299 25.34 1.299 49.06 0 94.21-16.57 130.3-44.83-46.13-.975-84.79-31.19-98.11-72.77 6.498 .974 12.99 1.624 19.82 1.624 9.421 0 18.84-1.3 27.61-3.573-48.08-9.747-84.14-51.98-84.14-102.1v-1.299c13.97 7.797 30.21 12.67 47.43 13.32-28.26-18.84-46.78-51.01-46.78-87.39 0-19.49 5.197-37.36 14.29-52.95 51.65 63.67 129.3 105.3 216.4 109.8-1.624-7.797-2.599-15.92-2.599-24.04 0-57.83 46.78-104.9 104.9-104.9 30.21 0 57.5 12.67 76.67 33.14 23.72-4.548 46.46-13.32 66.6-25.34-7.798 24.37-24.37 44.83-46.13 57.83 21.12-2.273 41.58-8.122 60.43-16.24-14.29 20.79-32.16 39.31-52.63 54.25z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"e8e66f77","hideLabel":true,"icon":"instagram","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-e8e66f77"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"75ad829c","hideLabel":true,"icon":"linkedin","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-75ad829c"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child -->\n\n<!-- wp:uagb/icon-list-child {"block_id":"1e528de7","hideLabel":true,"icon":"youtube","link":"#","target":true,"disableLink":true,"imageSizeChild":20} -->\n<div class="wp-block-uagb-icon-list-child uagb-block-1e528de7"><a target="_blank" aria-label="List item" rel="noopener noreferrer" href="#"> </a><span class="uagb-icon-list__source-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M549.7 124.1c-6.281-23.65-24.79-42.28-48.28-48.6C458.8 64 288 64 288 64S117.2 64 74.63 75.49c-23.5 6.322-42 24.95-48.28 48.6-11.41 42.87-11.41 132.3-11.41 132.3s0 89.44 11.41 132.3c6.281 23.65 24.79 41.5 48.28 47.82C117.2 448 288 448 288 448s170.8 0 213.4-11.49c23.5-6.321 42-24.17 48.28-47.82 11.41-42.87 11.41-132.3 11.41-132.3s0-89.44-11.41-132.3zm-317.5 213.5V175.2l142.7 81.21-142.7 81.2z"></path></svg></span></div>\n<!-- /wp:uagb/icon-list-child --></div></div>\n<!-- /wp:uagb/icon-list --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7dfed97e","directionDesktop":"row","directionTablet":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","wrapTablet":"nowrap","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-7dfed97e alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/google-map {"block_id":"e1c989be","height":650,"heightTablet":500,"heightMobile":350,"address":"Navi Mumbai"} /-->\n\n<!-- wp:uagb/container {"block_id":"d0cb7be2","widthDesktop":50,"widthTablet":50,"directionTablet":"column","directionMobile":"column","alignItemsTablet":"flex-start","justifyContentTablet":"center","wrapTablet":"nowrap","wrapMobile":"nowrap","rowGapDesktop":40,"rowGapTablet":30,"rowGapMobile":35,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-d0cb7be2"><!-- wp:uagb/advanced-heading {"block_id":"f35113b2","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-f35113b2"><h2 class="uagb-heading-text">We’d Love to Hear You</h2><p class="uagb-desc-text">Reach out to us for personalized design solutions tailored to your unique needs and style.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:shortcode -->\n[sureforms id=''419'']\n<!-- /wp:shortcode --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Contact', '', 'inherit', 'closed', 'closed', '', '229-revision-v1', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 229, 'https://novationinteriors.com/wp/?p=464', 0, 'revision', '', 0),
(465, 1, '2025-11-15 05:09:53', '2025-11-15 05:09:53', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":1000,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":17,"title":"pexels photo 1374125","filename":"pexels-photo-1374125.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1374125/","alt":"A stylish and cozy bedroom featuring green walls, botanical prints, and soft lighting for a contemporary feel.","author":"1","description":"","caption":"","name":"pexels-photo-1374125","status":"inherit","uploadedTo":0,"date":1763183300000,"modified":1763183300000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"9f2990ce66","delete":"56ba83e905","edit":"1e21fe8f98"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=17&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":72270,"filesizeHumanReadable":"71 KB","context":"","height":900,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":233,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125-233x300.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1374125.jpeg","height":900,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Explore Our Unique Design Offerings</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"48009aef","directionDesktop":"row","alignItemsDesktop":"flex-start","justifyContentDesktop":"space-between","wrapDesktop":"wrap","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":55,"rowGapMobile":55,"columnGapDesktop":0,"columnGapTablet":0,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-48009aef alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5250fd34","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5250fd34"><!-- wp:uagb/container {"block_id":"e2a91d97","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-e2a91d97"><!-- wp:uagb/image {"block_id":"8590ae9a","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":18,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8590ae9a wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-4352247.jpeg" alt="A chic minimalist living room featuring a white sofa with cushions, dried flowers in a vase, and a wooden floor." class="uag-image-18" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"3c7afed0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3c7afed0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01.</span><h2 class="uagb-ifb-title">Residential Design Services</h2></div><p class="uagb-ifb-desc">Our residential design services focus on creating inviting, personalized environments that resonate with your lifestyle. We collaborate closely with clients to understand their vision and preferences, ensuring every space is thoughtfully constructed. From conceptualization to execution, we meticulously select colors, materials, and furnishings to reflect your individual aesthetic. Each project is treated with the utmost care, ensuring that your home becomes an inspiring sanctuary tailored just for you.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"39480438","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-39480438"><!-- wp:uagb/image {"block_id":"c0169bf8","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":19,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-c0169bf8 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-447592.jpeg" alt="Contemporary living room with wooden furniture and creative decorations. Ideal for interior design inspiration." class="uag-image-19" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"57760dfc","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-57760dfc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02.</span><h2 class="uagb-ifb-title">Commercial Design Solutions</h2></div><p class="uagb-ifb-desc">Our commercial design solutions are crafted to enhance motivation and productivity within your workplace. Understanding the significance of a well-designed environment, we work to create spaces that are both functional and visually appealing. By harmonizing your brand identity with user-centric design, we ensure that every detail contributes to a positive experience for both employees and clients. Our approach is collaborative, innovative, and tailored to meet the unique needs of your business, whether it''s an office, retail space, or hospitality venue.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"58944a93","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"center","alignItemsMobile":"center","rowGapTablet":0,"rowGapMobile":55,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-58944a93"><!-- wp:uagb/container {"block_id":"62a31330","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-62a31330"><!-- wp:uagb/image {"block_id":"28a63686","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":20,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":350,"heightTablet":200,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Elegant modern interior living room with fireplace and stylish decor."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-28a63686 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1648771.jpeg" alt="Elegant modern interior living room with fireplace and stylish decor." class="uag-image-20" width="600" height="350" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"b870fe7d","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-b870fe7d uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03.</span><h2 class="uagb-ifb-title">Consultation Services</h2></div><p class="uagb-ifb-desc">Our consultation services provide expertise and guidance for your design journey. Whether you''re starting from scratch or need help refining an existing concept, our team is here to support you. We offer tailored advice on space planning, color palettes, material selections, and more. Our collaborative approach ensures you feel confident and informed every step of the way. Together, we''ll develop a roadmap to achieve a harmonious and stylish space that truly embodies your vision.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a474bc71","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topMarginDesktop":-126,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginTablet":-64,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginTypeTablet":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-a474bc71"><!-- wp:uagb/image {"block_id":"616a26fd","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":21,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":600,"naturalHeight":460,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":0,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":0,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":0,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Spacious modern living room featuring stairs, a TV, and sleek furniture design."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-616a26fd wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571459.jpeg" alt="Spacious modern living room featuring stairs, a TV, and sleek furniture design." class="uag-image-21" width="600" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"65a70ccb","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":40,"blockRightPadding":50,"blockLeftPadding":50,"blockBottomPadding":50,"blockTopPaddingTablet":40,"blockRightPaddingTablet":30,"blockLeftPaddingTablet":30,"blockBottomPaddingTablet":40,"blockTopPaddingMobile":40,"blockRightPaddingMobile":30,"blockLeftPaddingMobile":30,"blockBottomPaddingMobile":40,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-65a70ccb uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">04.</span><h2 class="uagb-ifb-title">Custom Furniture Design</h2></div><p class="uagb-ifb-desc">Our custom furniture design service creates unique pieces that perfectly match your style and functional needs. We collaborate with you to craft furniture solutions tailored to your specifications, ensuring they fit seamlessly into your spaces. Each piece is designed with an emphasis on both aesthetics and usability, ensuring that your selections not only look stunning but also enhance your everyday living. Experience the blend of craftsmanship and creativity that makes your furniture truly one-of-a-kind.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Services', '', 'inherit', 'closed', 'closed', '', '228-revision-v1', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 228, 'https://novationinteriors.com/wp/?p=465', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(466, 1, '2025-11-15 05:09:53', '2025-11-15 05:09:53', '<!-- wp:uagb/container {"block_id":"9ed5e6d4","innerContentCustomWidthDesktop":900,"backgroundType":"image","backgroundImageDesktop":{"id":22,"title":"pexels photo 1457844","filename":"pexels-photo-1457844.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457844/","alt":"Sleek contemporary hallway featuring a stunning glass chandelier and minimalist design.","author":"1","description":"","caption":"","name":"pexels-photo-1457844","status":"inherit","uploadedTo":0,"date":1763183307000,"modified":1763183307000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"569f471602","delete":"15eb50db98","edit":"5d725c5da4"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=22&action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":41963,"filesizeHumanReadable":"41 KB","context":"","height":1050,"width":700,"orientation":"portrait","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-150x150.jpeg","orientation":"landscape"},"medium":{"height":300,"width":200,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-200x300.jpeg","orientation":"portrait"},"large":{"height":1024,"width":683,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844-683x1024.jpeg","orientation":"portrait"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457844.jpeg","height":1050,"width":700,"orientation":"portrait"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(--ast-global-color-7)","topPaddingDesktop":210,"bottomPaddingDesktop":120,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-9ed5e6d4 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":0,"block_id":"d5b134cc","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d5b134cc uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space Today</span><h1 class="uagb-ifb-title">Discover Novation Interiors'' Passion for Design</h1></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"43961427","justifyContentDesktop":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":80,"rowGapTablet":50,"rowGapMobile":55,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-43961427 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"91de6b3c","widthTablet":100,"directionDesktop":"row","directionTablet":"column","alignItemsDesktop":"flex-start","rowGapTablet":20,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":0,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-91de6b3c"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"","prefixHeadingTag":"h3","headingTag":"p","headSpace":15,"subHeadSpace":0,"block_id":"3e6b189a","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":20,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":15,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":15,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-3e6b189a uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title-prefix">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-ifb-title">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div><p class="uagb-ifb-desc">At Novation Interiors, we take pride in the transformative results we''ve achieved for our clients. From stunning residential makeovers to innovative commercial designs, our meticulous approach ensures every project embodies the unique style and comfort of each client, resulting in beautiful and functional spaces.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/image {"block_id":"aa6e2cb7","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":23,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":350,"heightMobile":300,"naturalWidth":1024,"naturalHeight":400,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-aa6e2cb7 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/mission-1024x400-1.jpg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-245208.jpeg" alt="Contemporary room design featuring colorful artwork, sleek furniture, and decorative elements." class="uag-image-23" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"3f9cf3b8","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":40,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-3f9cf3b8"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Commitment</span><h3 class="uagb-ifb-title">Crafting Personalized Environments</h3></div><p class="uagb-ifb-desc">At Novation Interiors, our mission is to create personalized sanctuaries that reflect the distinct lifestyle and personality of our clients. With a blend of elegance and functionality, we aim to inspire and elevate every environment we touch.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"eba12409","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-eba12409 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Core Principles</span><h3 class="uagb-ifb-title">What Drives Us</h3></div><p class="uagb-ifb-desc">We value collaboration, innovation, and meticulous attention to detail. Our commitment to understanding each client''s unique needs ensures that we deliver designs that not only meet but exceed expectations, fostering lasting relationships built on trust and satisfaction.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6f310176","directionDesktop":"row","directionMobile":"column-reverse","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(--ast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":40,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6f310176 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"5962c3bc","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"center","paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"rowGapDesktop":40,"rowGapTablet":40,"rowGapMobile":45,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-5962c3bc"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(--ast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"31e33fee","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":0,"headMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-31e33fee uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Common Inquiries</span><h2 class="uagb-ifb-title">Frequently Asked Questions</h2></div></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/faq {"block_id":"0c5731f4","blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"rowsGap":20,"rowsGapTablet":20,"boxBgColor":"var(--ast-global-color-5)","borderStyle":"","borderWidth":"","borderRadius":"","borderColor":"","vquestionPaddingMobile":15,"vquestionPaddingTablet":15,"vquestionPaddingDesktop":24,"hquestionPaddingMobile":15,"hquestionPaddingTablet":15,"hquestionPaddingDesktop":24,"iconColor":"var(--ast-global-color-2)","iconActiveColor":"var(--ast-global-color-0)","questionFontWeight":"400","questionFontSize":18,"questionFontSizeTablet":17,"questionFontSizeMobile":16,"icon":"angle-down","iconActive":"angle-up","iconAlign":"row-reverse","iconSize":20,"schema":"{u0022@contextu0022:u0022https://schema.orgu0022,u0022@typeu0022:u0022FAQPageu0022,u0022@idu0022:u0022https://multipurpose12.ziptemplates.top/about/u0022,u0022mainEntityu0022:[{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022What services does Novation Interiors offer?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022How does the design process work?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.u0022}},{u0022@typeu0022:u0022Questionu0022,u0022nameu0022:u0022Can you work within my budget?u0022,u0022acceptedAnsweru0022:{u0022@typeu0022:u0022Answeru0022,u0022textu0022:u0022Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.u0022}}]}","questionLeftPaddingTablet":15,"questionBottomPaddingTablet":15,"questionLeftPaddingDesktop":24,"questionBottomPaddingDesktop":24,"questionLeftPaddingMobile":15,"questionBottomPaddingMobile":15,"headingTag":"p","questionSpacingLink":true,"answerTopPadding":0,"answerRightPadding":24,"answerBottomPadding":24,"answerLeftPadding":24,"answerTopPaddingTablet":0,"answerRightPaddingTablet":15,"answerBottomPaddingTablet":15,"answerLeftPaddingTablet":15,"answerTopPaddingMobile":0,"answerRightPaddingMobile":15,"answerBottomPaddingMobile":15,"answerLeftPaddingMobile":15,"overallBorderTopWidth":1,"overallBorderLeftWidth":1,"overallBorderRightWidth":1,"overallBorderBottomWidth":1,"overallBorderTopLeftRadius":0,"overallBorderTopRightRadius":0,"overallBorderBottomLeftRadius":0,"overallBorderBottomRightRadius":0,"overallBorderStyle":"solid","overallBorderColor":"var(--ast-global-color-6)","iconBgColor":""} -->\n<div class="wp-block-uagb-faq uagb-faq__outer-wrap uagb-block-0c5731f4 uagb-faq-icon-row-reverse uagb-faq-layout-accordion uagb-faq-expand-first-true uagb-faq-inactive-other-true uagb-faq__wrap uagb-buttons-layout-wrap uagb-faq-equal-height" data-faqtoggle="true" role="tablist"><!-- wp:uagb/faq-child {"block_id":"8a302e01","question":"What services does Novation Interiors offer?","answer":"Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-8a302e01" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">What services does Novation Interiors offer?</p></div><div class="uagb-faq-content"><p>Novation Interiors specializes in both residential and commercial interior design. Our services include space planning, color consultation, furniture selection, and complete renovations, all tailored to fit your unique vision and lifestyle.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"cef63c6f","question":"How does the design process work?","answer":"Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-cef63c6f" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">How does the design process work?</p></div><div class="uagb-faq-content"><p>Our design process begins with an initial consultation to understand your needs and preferences. We then collaborate with you to create customized design concepts, ensuring that your space reflects your personality and functional requirements.</p></div></div>\n<!-- /wp:uagb/faq-child -->\n\n<!-- wp:uagb/faq-child {"block_id":"f6a73cb6","question":"Can you work within my budget?","answer":"Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.","icon":"angle-down","iconActive":"angle-up","headingTag":"p"} -->\n<div class="wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-f6a73cb6" role="tab" tabindex="0"><div class="uagb-faq-questions-button uagb-faq-questions"><span class="uagb-icon uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"></path></svg></span><span class="uagb-icon-active uagb-faq-icon-wrap"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z"></path></svg></span><p class="uagb-question">Can you work within my budget?</p></div><div class="uagb-faq-content"><p>Absolutely! At Novation Interiors, we believe that great design should be accessible. We work closely with our clients to develop designs that not only meet their aesthetic vision but also align with their budgetary constraints.</p></div></div>\n<!-- /wp:uagb/faq-child --></div>\n<!-- /wp:uagb/faq --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"892c8053","widthDesktop":50,"widthTablet":50,"justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-892c8053"><!-- wp:uagb/image {"block_id":"8c89d0eb","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg","align":"left","alignTablet":"left","alignMobile":"left","id":24,"linkDestination":"none","width":600,"widthTablet":600,"widthMobile":600,"height":500,"heightTablet":400,"heightMobile":300,"naturalWidth":600,"naturalHeight":640,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":50,"imageBorderBottomLeftRadius":50,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false,"className":"alignleft","alt":"Stylish café interior featuring modern décor, green walls, plants, and comfortable seating."} -->\n<div class="wp-block-uagb-image alignleft uagb-block-8c89d0eb wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-2067638.jpeg" alt="Stylish café interior featuring modern décor, green walls, plants, and comfortable seating." class="uag-image-24" width="600" height="500" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'About', '', 'inherit', 'closed', 'closed', '', '227-revision-v1', '', '', '2025-11-15 05:09:53', '2025-11-15 05:09:53', '', 227, 'https://novationinteriors.com/wp/?p=466', 0, 'revision', '', 0),
(467, 1, '2025-11-15 07:19:53', '2025-11-15 07:19:53', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"pexels photo 1643383","filename":"pexels-photo-1643383.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1643383/","alt":"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.","author":"1","description":"","caption":"","name":"pexels-photo-1643383","status":"inherit","uploadedTo":0,"date":1763183289000,"modified":1763183289000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"e841509ba4","delete":"47dc4a1487","edit":"60c3bad976"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=9\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":118833,"filesizeHumanReadable":"116 KB","context":"","height":843,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-150x150.jpeg","orientation":"landscape"},"medium":{"height":198,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-300x198.jpeg","orientation":"landscape"},"large":{"height":674,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-1024x674.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","height":843,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Get Started</span><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504.3 273.6l-112.1 104c-6.992 6.484-17.18 8.218-25.94 4.406c-8.758-3.812-14.42-12.45-14.42-21.1L351.9 288H32C14.33 288 .0002 273.7 .0002 255.1S14.33 224 32 224h319.9l0-72c0-9.547 5.66-18.19 14.42-22c8.754-3.809 18.95-2.075 25.94 4.41l112.1 104C514.6 247.9 514.6 264.1 504.3 273.6z"></path></svg></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(\\u002d\\u002dast-global-color-0)","hColor":"var(\\u002d\\u002dast-global-color-4)","hBackground":"var(\\u002d\\u002dast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(\\u002d\\u002dast-global-color-0)","btnBorderHColor":"var(\\u002d\\u002dast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self" role="button"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"pexels photo 1457842","filename":"pexels-photo-1457842.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457842/","alt":"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.","author":"1","description":"","caption":"","name":"pexels-photo-1457842","status":"inherit","uploadedTo":0,"date":1763183291000,"modified":1763183291000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"85313d1393","delete":"e4dfa51205","edit":"689316abd3"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=10\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":92286,"filesizeHumanReadable":"90 KB","context":"","height":777,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-150x150.jpeg","orientation":"landscape"},"medium":{"height":182,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-300x182.jpeg","orientation":"landscape"},"large":{"height":622,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-1024x622.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","height":777,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":11,"title":"pexels photo 1571460","filename":"pexels-photo-1571460.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571460/","alt":"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.","author":"1","description":"","caption":"","name":"pexels-photo-1571460","status":"inherit","uploadedTo":0,"date":1763183292000,"modified":1763183292000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"582124632f","delete":"11f11d919f","edit":"438ed46680"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=11\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":119312,"filesizeHumanReadable":"117 KB","context":"","height":823,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-150x150.jpeg","orientation":"landscape"},"medium":{"height":193,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-300x193.jpeg","orientation":"landscape"},"large":{"height":658,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-1024x658.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","height":823,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"pexels photo 1571453","filename":"pexels-photo-1571453.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571453/","alt":"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.","author":"1","description":"","caption":"","name":"pexels-photo-1571453","status":"inherit","uploadedTo":0,"date":1763183293000,"modified":1763183293000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"6305ddf4b9","delete":"6df5e17e48","edit":"81a5930b47"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=12\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":133044,"filesizeHumanReadable":"130 KB","context":"","height":855,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-150x150.jpeg","orientation":"landscape"},"medium":{"height":200,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-300x200.jpeg","orientation":"landscape"},"large":{"height":684,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-1024x684.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","height":855,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":13,"title":"pexels photo 271816","filename":"pexels-photo-271816.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-271816/","alt":"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.","author":"1","description":"","caption":"","name":"pexels-photo-271816","status":"inherit","uploadedTo":0,"date":1763183295000,"modified":1763183295000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"c439696799","delete":"721d23a9e8","edit":"da460ab366"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=13\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":102369,"filesizeHumanReadable":"100 KB","context":"","height":720,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-150x150.jpeg","orientation":"landscape"},"medium":{"height":169,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-300x169.jpeg","orientation":"landscape"},"large":{"height":576,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-1024x576.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","height":720,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","alt":"Inviting living room interior featuring modern design with cozy furnishings and stylish decor.","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg" alt="Inviting living room interior featuring modern design with cozy furnishings and stylish decor." class="uag-image-14" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'inherit', 'closed', 'closed', '', '226-autosave-v1', '', '', '2025-11-15 07:19:53', '2025-11-15 07:19:53', '', 226, 'https://novationinteriors.com/wp/?p=467', 0, 'revision', '', 0);
INSERT INTO `wp8u_posts` VALUES
(468, 1, '2025-11-15 07:20:18', '2025-11-15 07:20:18', '<!-- wp:uagb/container {"block_id":"33914ddc","innerContentCustomWidthDesktop":900,"justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":9,"title":"pexels photo 1643383","filename":"pexels-photo-1643383.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1643383/","alt":"Spacious modern living room featuring chic furniture, stylish decor, and a minimalist kitchen.","author":"1","description":"","caption":"","name":"pexels-photo-1643383","status":"inherit","uploadedTo":0,"date":1763183289000,"modified":1763183289000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"e841509ba4","delete":"47dc4a1487","edit":"60c3bad976"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=9\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":118833,"filesizeHumanReadable":"116 KB","context":"","height":843,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-150x150.jpeg","orientation":"landscape"},"medium":{"height":198,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-300x198.jpeg","orientation":"landscape"},"large":{"height":674,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383-1024x674.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1643383.jpeg","height":843,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":220,"bottomPaddingDesktop":140,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":140,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":150,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"overlayType":"color","overlayOpacity":0.7} -->\n<div class="wp-block-uagb-container uagb-block-33914ddc alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"#ffffff","subHeadingColor":"#ffffff","prefixColor":"#ffffff","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h1","headSpace":15,"subHeadSpace":4,"block_id":"32540a6c","ctaType":"button","ctaText":"Get Started","ctaLink":"contact/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":15,"subHeadLeftMargin":15,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-32540a6c uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Transform Your Space</span><h1 class="uagb-ifb-title">Elevate Your Interior Design Experience</h1></div><p class="uagb-ifb-desc">At Novation Interiors, we blend elegance with function to create personalized sanctuaries tailored to your lifestyle.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="contact/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Get Started</span><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504.3 273.6l-112.1 104c-6.992 6.484-17.18 8.218-25.94 4.406c-8.758-3.812-14.42-12.45-14.42-21.1L351.9 288H32C14.33 288 .0002 273.7 .0002 255.1S14.33 224 32 224h319.9l0-72c0-9.547 5.66-18.19 14.42-22c8.754-3.809 18.95-2.075 25.94 4.41l112.1 104C514.6 247.9 514.6 264.1 504.3 273.6z"></path></svg></a></div></div></div>\n<!-- /wp:uagb/info-box --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"5b740152","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":20,"columnGapDesktop":80,"columnGapTablet":40,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-5b740152 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"590aa15a","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-590aa15a"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignMobile":"left","headingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":0,"block_id":"2359313e","showPrefix":true,"showIcon":false,"showDesc":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-2359313e uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Who We Are</span><h2 class="uagb-ifb-title">Your Trusted Interior Design Studio</h2></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6ec428b1","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","rowGapDesktop":40,"rowGapTablet":25,"rowGapMobile":25,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-6ec428b1"><!-- wp:uagb/advanced-heading {"block_id":"e30f7b91","classMigrate":true,"headingDescToggle":true,"headingAlignTablet":"left","headingAlignMobile":"left","subHeadingColor":"","headingTag":"h3","headSpaceMobile":10,"headSpaceTablet":10,"subHeadSpace":0,"subHeadSpaceTablet":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-e30f7b91"><h3 class="uagb-heading-text">Novation Interiors is a leading online interior design studio specializing in both residential and commercial projects.</h3><p class="uagb-desc-text">Led by a dedicated mother-daughter team, we offer innovative design solutions that achieve a perfect harmony of style and functionality. Our meticulous attention to detail and collaborative approach are hallmarks of our service. We''ve been recognized for excellence in design, making us the go-to choice for clients who want to enhance their spaces with unique, personalized touches.</p></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/buttons {"block_id":"dce11512","classMigrate":true,"childMigrate":true,"align":"left","alignTablet":"left","alignMobile":"left"} -->\n<div class="wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__default-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-dce11512"><div class="uagb-buttons__wrap uagb-buttons-layout-wrap "><!-- wp:uagb/buttons-child {"buttonType":"secondary","block_id":"dff7d825","label":"Learn More","link":"about/","color":"var(\\u002d\\u002dast-global-color-0)","hColor":"var(\\u002d\\u002dast-global-color-4)","hBackground":"var(\\u002d\\u002dast-global-color-1)","backgroundType":"transparent","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderStyle":"solid","btnBorderColor":"var(\\u002d\\u002dast-global-color-0)","btnBorderHColor":"var(\\u002d\\u002dast-global-color-1)"} -->\n<div class="wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-dff7d825 wp-block-button"><div class="uagb-button__wrapper"><a class="uagb-buttons-repeater ast-outline-button" aria-label="" style="border-width:revert-layer" href="about/" rel="follow noopener" target="_self" role="button"><div class="uagb-button__link">Learn More</div></a></div></div>\n<!-- /wp:uagb/buttons-child --></div></div>\n<!-- /wp:uagb/buttons --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"6524a66f","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-6524a66f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"99aa96b3","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":10,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":22,"blockLeftPadding":22,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":10,"blockLeftPaddingTablet":10,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":10,"blockLeftPaddingMobile":10,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-99aa96b3 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Services</span><h2 class="uagb-ifb-title">Exceptional Design Solutions Tailored For You</h2></div><p class="uagb-ifb-desc">Explore our comprehensive range of interior design services, perfect for any space and style.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"a0a42333","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapTablet":0,"rowGapMobile":35,"columnGapDesktop":40,"columnGapTablet":25,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-a0a42333"><!-- wp:uagb/container {"block_id":"9abd22a4","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":10,"title":"pexels photo 1457842","filename":"pexels-photo-1457842.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1457842/","alt":"Stylish living room with a view of Table Mountain, blending modern design with natural beauty.","author":"1","description":"","caption":"","name":"pexels-photo-1457842","status":"inherit","uploadedTo":0,"date":1763183291000,"modified":1763183291000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"85313d1393","delete":"e4dfa51205","edit":"689316abd3"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=10\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":92286,"filesizeHumanReadable":"90 KB","context":"","height":777,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-150x150.jpeg","orientation":"landscape"},"medium":{"height":182,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-300x182.jpeg","orientation":"landscape"},"large":{"height":622,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842-1024x622.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1457842.jpeg","height":777,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9abd22a4"><!-- wp:uagb/advanced-heading {"block_id":"769a552b","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-769a552b"><h2 class="uagb-heading-text">01.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"d59c5b69","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-d59c5b69 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Residential Design Services</h3></div><p class="uagb-ifb-desc">Tailored interior designs that reflect your personal style and enhance comfort in your home.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"032d95fc","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":11,"title":"pexels photo 1571460","filename":"pexels-photo-1571460.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571460/","alt":"Contemporary living room with neutral tones, a sleek sofa, and elegant wooden staircase.","author":"1","description":"","caption":"","name":"pexels-photo-1571460","status":"inherit","uploadedTo":0,"date":1763183292000,"modified":1763183292000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"582124632f","delete":"11f11d919f","edit":"438ed46680"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=11\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":119312,"filesizeHumanReadable":"117 KB","context":"","height":823,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-150x150.jpeg","orientation":"landscape"},"medium":{"height":193,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-300x193.jpeg","orientation":"landscape"},"large":{"height":658,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460-1024x658.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571460.jpeg","height":823,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-032d95fc"><!-- wp:uagb/advanced-heading {"block_id":"728f4cfc","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-728f4cfc"><h2 class="uagb-heading-text">02.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"ef01bad9","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ef01bad9 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Commercial Design Solutions</h3></div><p class="uagb-ifb-desc">Transform your business environment into a space that fosters productivity and reflects your brand.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"9c8fa577","widthDesktop":33,"widthTablet":33,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"image","backgroundImageDesktop":{"id":12,"title":"pexels photo 1571453","filename":"pexels-photo-1571453.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-1571453/","alt":"Elegant Scandinavian-style living room and kitchen featuring modern furniture and decor.","author":"1","description":"","caption":"","name":"pexels-photo-1571453","status":"inherit","uploadedTo":0,"date":1763183293000,"modified":1763183293000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"6305ddf4b9","delete":"6df5e17e48","edit":"81a5930b47"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=12\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":133044,"filesizeHumanReadable":"130 KB","context":"","height":855,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-150x150.jpeg","orientation":"landscape"},"medium":{"height":200,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-300x200.jpeg","orientation":"landscape"},"large":{"height":684,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453-1024x684.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-1571453.jpeg","height":855,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundImageColor":"var(\\u002d\\u002dast-global-color-7)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":25,"bottomPaddingTablet":25,"leftPaddingTablet":25,"rightPaddingTablet":25,"rowGapDesktop":80,"rowGapTablet":25,"rowGapMobile":10,"widthSetByUser":true,"overlayType":"color","overlayOpacity":0.7,"containerBorderTopWidth":0,"containerBorderLeftWidth":0,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":50,"containerBorderBottomLeftRadius":50,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-9c8fa577"><!-- wp:uagb/advanced-heading {"block_id":"cd560cd0","classMigrate":true,"headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","separatorColor":"var(\\u002d\\u002dast-global-color-0)","seperatorStyle":"solid","separatorHeight":3,"separatorWidth":60,"separatorWidthType":"px","headSpace":0,"headSpaceMobile":0,"headSpaceTablet":0,"separatorSpace":0} -->\n<div class="wp-block-uagb-advanced-heading uagb-block-cd560cd0"><h2 class="uagb-heading-text">03.</h2><div class="uagb-separator"></div></div>\n<!-- /wp:uagb/advanced-heading -->\n\n<!-- wp:uagb/info-box {"inheritFromTheme":false,"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"#ffffff","subHeadingColor":"#ffffff","headSpace":15,"subHeadSpace":25,"block_id":"0bb78aa6","showCtaIcon":false,"ctaType":"text","ctaBgType":"transparent","ctaText":"Learn More","ctaLink":"services/","ctaLinkColor":"","ctaTransform":"uppercase","ctaBtnLinkColor":"","ctaBgColor":"","showIcon":false,"paddingBtnTop":0,"paddingBtnBottom":0,"paddingBtnLeft":0,"paddingBtnRight":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":5,"headMarginLeftMobile":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":15,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":15,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-0bb78aa6 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><h3 class="uagb-ifb-title">Consultation Services</h3></div><p class="uagb-ifb-desc">Professional consultations that guide you through the entire design process.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="services/" target="_self" onclick="return true;" class="uagb-infobox-cta-link" rel="noopener noreferrer"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"23d0646f","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","topPaddingDesktop":100,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapMobile":0,"columnGapTablet":0,"isBlockRootParent":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-23d0646f alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/container {"block_id":"7453ae49","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"bottomPaddingMobile":30,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-7453ae49"><!-- wp:uagb/counter {"block_id":"7a505c88","alignTablet":"center","alignMobile":"center","heading":"Client Satisfaction","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":92,"numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-7a505c88 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="92" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">Client Satisfaction</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"a2d43849","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":1,"containerBorderBottomWidth":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":1,"containerBorderLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-a2d43849"><!-- wp:uagb/counter {"block_id":"ead41114","alignTablet":"center","alignMobile":"center","heading":"Team Members","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":25,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-ead41114 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="25" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Team Members</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"097966ea","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":30,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-097966ea"><!-- wp:uagb/counter {"block_id":"eb69c34f","alignTablet":"center","alignMobile":"center","heading":"Year of Experience","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":12,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-eb69c34f wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="12" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Year of Experience</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"bd62307c","widthDesktop":25,"widthTablet":25,"justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","topPaddingDesktop":20,"bottomPaddingDesktop":20,"topPaddingTablet":0,"bottomPaddingTablet":0,"leftPaddingTablet":0,"rightPaddingTablet":0,"topPaddingMobile":30,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"marginLink":false,"widthSetByUser":true,"containerBorderTopWidth":0,"containerBorderLeftWidth":1,"containerBorderRightWidth":0,"containerBorderBottomWidth":0,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":0,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthMobile":1,"containerBorderLeftWidthMobile":0,"containerBorderRightWidthMobile":0,"containerBorderBottomWidthMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false,"containerBorderStyle":"solid","containerBorderColor":"var(\\u002d\\u002dast-global-color-6)"} -->\n<div class="wp-block-uagb-container uagb-block-bd62307c"><!-- wp:uagb/counter {"block_id":"5a657ec5","alignTablet":"center","alignMobile":"center","heading":"Global Awards","headingColor":"var(\\u002d\\u002dast-global-color-2)","headingTransform":"uppercase","headingFontSizeTablet":14,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"headingTopMargin":10,"headingRightMargin":0,"headingLeftMargin":0,"headingBottomMargin":0,"endNumber":5,"numberSuffix":"+","numberLoadGoogleFonts":true,"numberColor":"var(\\u002d\\u002dast-global-color-2)","numberFontFamily":"PT Serif","numberFontWeight":"500","numberFontSize":50,"numberFontSizeTablet":35,"numberTopMargin":0,"numberRightMargin":0,"numberLeftMargin":0,"numberBottomMargin":0,"showIcon":false} -->\n<div class="wp-block-uagb-counter uagb-block-5a657ec5 wp-block-uagb-counter--number"><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="5" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">+</span></div><div class="wp-block-uagb-counter__title">Global Awards</div></div>\n<!-- /wp:uagb/counter --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c61f515b","innerContentWidth":"alignfull","minHeightMobile":700,"alignItemsDesktop":"flex-end","justifyContentMobile":"flex-end","backgroundType":"image","backgroundImageDesktop":{"id":13,"title":"pexels photo 271816","filename":"pexels-photo-271816.jpeg","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","link":"https://novationinteriors.com/wp/pexels-photo-271816/","alt":"A modern living room featuring stylish bookshelves, a vibrant painting, and minimalistic decor.","author":"1","description":"","caption":"","name":"pexels-photo-271816","status":"inherit","uploadedTo":0,"date":1763183295000,"modified":1763183295000,"menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-includes/images/media/default.svg","dateFormatted":"November 15, 2025","nonces":{"update":"c439696799","delete":"721d23a9e8","edit":"da460ab366"},"editLink":"https://novationinteriors.com/wp/wp-admin/post.php?post=13\\u0026amp;action=edit","meta":false,"authorName":"admin","authorLink":"https://novationinteriors.com/wp/wp-admin/profile.php","filesizeInBytes":102369,"filesizeHumanReadable":"100 KB","context":"","height":720,"width":1280,"orientation":"landscape","sizes":{"thumbnail":{"height":150,"width":150,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-150x150.jpeg","orientation":"landscape"},"medium":{"height":169,"width":300,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-300x169.jpeg","orientation":"landscape"},"large":{"height":576,"width":1024,"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816-1024x576.jpeg","orientation":"landscape"},"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-271816.jpeg","height":720,"width":1280,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"backgroundPositionDesktop":{"x":0,"y":0.5},"backgroundPositionTablet":{"x":0,"y":0.5},"backgroundPositionMobile":{"x":0.5,"y":0},"backgroundSizeDesktop":"custom","backgroundSizeTablet":"custom","backgroundSizeMobile":"custom","backgroundColor":"","topPaddingMobile":0,"bottomPaddingMobile":0,"leftPaddingMobile":0,"rightPaddingMobile":0,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginLink":false,"variationSelected":true,"isBlockRootParent":true,"backgroundCustomSizeDesktop":56,"backgroundCustomSizeTablet":44,"backgroundCustomSizeMobile":35,"backgroundCustomSizeType":"em","xPositionDesktop":0,"xPositionType":"em","yPositionDesktop":0,"yPositionType":"%","selectGradient":"advanced","gradientLocation1":-41,"gradientLocation2":-37,"backgroundPositionOverlayDesktop":{"x":0,"y":1},"backgroundSizeOverlayDesktop":"contain","containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":0,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c61f515b alignfull uagb-is-root-container"><!-- wp:uagb/container {"block_id":"b88a5352","widthDesktop":40,"widthTablet":55,"alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":80,"bottomPaddingDesktop":80,"leftPaddingDesktop":80,"rightPaddingDesktop":80,"topPaddingTablet":40,"bottomPaddingTablet":40,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":64,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginDesktop":0,"bottomMarginDesktop":0,"leftMarginDesktop":0,"rightMarginDesktop":15,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"topMarginMobile":0,"bottomMarginMobile":0,"leftMarginMobile":0,"rightMarginMobile":0,"marginType":"%","marginLink":false,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":80,"containerBorderBottomLeftRadius":0,"containerBorderBottomRightRadius":0,"containerBorderTopWidthTablet":0,"containerBorderLeftWidthTablet":0,"containerBorderRightWidthTablet":0,"containerBorderBottomWidthTablet":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":80,"containerBorderBottomLeftRadiusTablet":0,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":0,"containerBorderBottomRightRadiusMobile":0,"containerBorderLink":false,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-b88a5352"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":30,"block_id":"089a5fbd","showCtaIcon":false,"ctaType":"button","ctaText":"Learn More","ctaLink":"about/","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":25,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":25,"subHeadMarginLeftMobile":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-089a5fbd uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Our Journey</span><h2 class="uagb-ifb-title">The Story Behind Novation Interiors</h2></div><p class="uagb-ifb-desc">Founded in 2015, Novation Interiors began with a vision to redefine interior design. Over the years, our innovative approach and commitment to client satisfaction have earned us multiple accolades and a loyal clientele. We have successfully completed numerous projects, each one telling a unique story through design, cementing our reputation in the industry.</p><div class="uagb-ifb-button-wrapper wp-block-button"><a href="about/" class="uagb-infobox-cta-link wp-block-button__link" target="_self" rel="noopener noreferrer" onclick="return true;"><span class="uagb-inline-editing">Learn More</span></a></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"7e6769fe","alignItemsTablet":"flex-start","justifyContentTablet":"flex-start","topPaddingDesktop":100,"bottomPaddingDesktop":0,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":0,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":64,"bottomPaddingMobile":0,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":45,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-7e6769fe alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"df560f93","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-df560f93 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">What Our Clients Say</span><h2 class="uagb-ifb-title">Client Experiences with Novation Interiors</h2></div><p class="uagb-ifb-desc">Hear from our satisfied clients about their transformative design journeys with us.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/container {"block_id":"6700b253","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"widthSetByUser":true,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-6700b253"><!-- wp:uagb/container {"block_id":"37d6e4c7","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-37d6e4c7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"f9b5cf3a","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":221,"title":"testimonial-skip-01","filename":"testimonial-skip-01.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-01/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-01","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:19.000Z","modified":"2024-02-21T11:16:19.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"63d4f6d153","delete":"750fc22db5","edit":"55b6ba99dd"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=221u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":19686,"filesizeHumanReadable":"19 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-f9b5cf3a uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-01.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Working with Novation Interiors was a dream! They truly listened to my vision and brought it to life with stunning detail.</span><p class="uagb-ifb-title">James Carter</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"80ef6ada","widthDesktop":50,"widthTablet":50,"alignItemsTablet":"flex-start","justifyContentDesktop":"flex-start","justifyContentTablet":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"widthSetByUser":true,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-80ef6ada"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"ac698830","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":222,"title":"testimonial-skip-02","filename":"testimonial-skip-02.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-02/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-02","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:20.000Z","modified":"2024-02-21T11:16:20.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"6a34b36f4a","delete":"0fc7e441a4","edit":"db338f63ce"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=222u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16868,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMobileSpace":15,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-ac698830 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-02.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">I never knew my space could look this beautiful! The team was professional, creative, and incredibly responsive to my needs.</span><p class="uagb-ifb-title">Lisa Green</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2257c642","directionDesktop":"row","alignItemsDesktop":"stretch","alignItemsTablet":"stretch","alignItemsMobile":"stretch","rowGapMobile":35,"columnGapDesktop":60,"columnGapTablet":40,"equalHeight":true} -->\n<div class="wp-block-uagb-container uagb-block-2257c642"><!-- wp:uagb/container {"block_id":"45ad2bf2","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-45ad2bf2"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"a3e49a74","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":223,"title":"testimonial-skip-03","filename":"testimonial-skip-03.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-03/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-03","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:21.000Z","modified":"2024-02-21T11:16:21.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"06c9dd2b55","delete":"95e7a08ab7","edit":"33447d32ba"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=223u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":13804,"filesizeHumanReadable":"13 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-a3e49a74 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-03.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Novation Interiors transformed our office into a collaborative and inspiring space. Their design expertise made a significant impact on our team culture.</span><p class="uagb-ifb-title">David Thompson</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"c7e41ea7","justifyContentDesktop":"flex-start","justifyContentMobile":"flex-start","backgroundType":"color","backgroundColor":"var(\\u002d\\u002dast-global-color-4)","topPaddingDesktop":60,"bottomPaddingDesktop":60,"leftPaddingDesktop":50,"rightPaddingDesktop":50,"topPaddingTablet":30,"bottomPaddingTablet":30,"leftPaddingTablet":30,"rightPaddingTablet":30,"topMarginTablet":0,"bottomMarginTablet":0,"leftMarginTablet":0,"rightMarginTablet":0,"marginLink":false,"containerBorderTopLeftRadius":0,"containerBorderTopRightRadius":60,"containerBorderBottomLeftRadius":60,"containerBorderBottomRightRadius":0,"containerBorderTopLeftRadiusTablet":0,"containerBorderTopRightRadiusTablet":50,"containerBorderBottomLeftRadiusTablet":50,"containerBorderBottomRightRadiusTablet":0,"containerBorderTopLeftRadiusMobile":0,"containerBorderTopRightRadiusMobile":50,"containerBorderBottomLeftRadiusMobile":50,"containerBorderBottomRightRadiusMobile":0,"containerBorderRadiusLink":false} -->\n<div class="wp-block-uagb-container uagb-block-c7e41ea7"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingColor":"var(\\u002d\\u002dast-global-color-2)","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-2)","iconimgPosition":"left","prefixFontSize":18,"prefixFontSizeTablet":17,"prefixFontSizeMobile":16,"prefixFontWeight":"400","headingTag":"p","headFontSize":16,"headFontSizeTablet":15,"headFontSizeMobile":15,"headFontWeight":"600","headTransform":"uppercase","headLetterSpacing":2,"headSpace":0,"subHeadSpace":0,"iconimgBorderRadius":100,"source_type":"image","block_id":"4744f425","iconLeftMargin":0,"iconRightMargin":0,"iconTopMargin":0,"iconBottomMargin":0,"iconImage":{"id":224,"title":"testimonial-skip-04","filename":"testimonial-skip-04.jpg","url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","link":"https://multipurpose12.ziptemplates.top/testimonial-skip-04/","alt":"","author":"2","description":"","caption":"","name":"testimonial-skip-04","status":"inherit","uploadedTo":0,"date":"2024-02-21T11:16:22.000Z","modified":"2024-02-21T11:16:22.000Z","menuOrder":0,"mime":"image/jpeg","type":"image","subtype":"jpeg","icon":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/default.png","dateFormatted":"February 21, 2024","nonces":{"update":"31e96a5e2f","delete":"a051694a44","edit":"cffe272270"},"editLink":"https://multipurpose12.ziptemplates.top/wp-admin/post.php?post=224u0026action=edit","meta":false,"authorName":"emmanuelm","authorLink":"https://multipurpose12.ziptemplates.top/wp-admin/profile.php","filesizeInBytes":16062,"filesizeHumanReadable":"16 KB","context":"","height":120,"width":120,"orientation":"landscape","sizes":{"full":{"url":"https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg","height":120,"width":120,"orientation":"landscape"}},"compat":{"item":"","meta":""}},"imageWidth":74,"imageWidthMobile":74,"imageWidthTablet":74,"showPrefix":true,"showDesc":false,"iconMarginTopMobile":0,"iconMarginRightMobile":0,"iconMarginBottomMobile":0,"iconMarginLeftMobile":0,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":30,"prefixLeftMargin":30,"prefixMarginTopTablet":0,"prefixMarginRightTablet":0,"prefixTabletSpace":15,"prefixMarginLeftTablet":0,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":15,"prefixMarginLeftMobile":0,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":30,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":0,"headMarginLeftTablet":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"imgTagHeight":74,"imgTagWidth":120,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4744f425 uagb-infobox__content-wrap uagb-infobox-icon-left uagb-infobox-left uagb-infobox-stacked-tablet uagb-infobox-image-valign-top"><div class="uagb-ifb-image-content"><img src="https://novationinteriors.com/wp/wp-content/uploads/2024/02/testimonial-skip-04.jpg" alt="" width="74" height="74" loading="lazy"/></div><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">The mother-daughter duo at Novation Interiors have an amazing talent for blending style with practicality. I couldn''t be happier with my home!</span><p class="uagb-ifb-title">Emily Brown</p></div></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:uagb/container {"block_id":"2f326697","justifyContentTablet":"flex-start","topPaddingDesktop":120,"bottomPaddingDesktop":100,"leftPaddingDesktop":40,"rightPaddingDesktop":40,"topPaddingTablet":80,"bottomPaddingTablet":80,"leftPaddingTablet":32,"rightPaddingTablet":32,"topPaddingMobile":80,"bottomPaddingMobile":80,"leftPaddingMobile":24,"rightPaddingMobile":24,"paddingLink":false,"variationSelected":true,"rowGapDesktop":60,"rowGapTablet":40,"rowGapMobile":40,"isBlockRootParent":true} -->\n<div class="wp-block-uagb-container uagb-block-2f326697 alignfull uagb-is-root-container"><div class="uagb-container-inner-blocks-wrap"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlignTablet":"center","headingAlignMobile":"center","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headingTag":"h2","headSpace":15,"subHeadSpace":0,"block_id":"76ceb716","showCtaIcon":false,"ctaText":"Call To action","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMarginTopMobile":0,"prefixMarginRightMobile":0,"prefixMobileSpace":10,"prefixMarginLeftMobile":0,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headMarginTopTablet":0,"headMarginRightTablet":0,"headTabletSpace":10,"headMarginLeftTablet":0,"headMarginTopMobile":0,"headMarginRightMobile":0,"headMobileSpace":10,"headMarginLeftMobile":0,"blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopPaddingTablet":0,"blockRightPaddingTablet":0,"blockLeftPaddingTablet":0,"blockBottomPaddingTablet":0,"blockTopPaddingMobile":0,"blockRightPaddingMobile":0,"blockLeftPaddingMobile":0,"blockBottomPaddingMobile":0,"blockPaddingUnit":"%","blockPaddingLink":false,"subHeadTopMargin":0,"subHeadRightMargin":22,"subHeadLeftMargin":22,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"subHeadMarginTopMobile":0,"subHeadMarginRightMobile":0,"subHeadMobileSpace":0,"subHeadMarginLeftMobile":0,"subHeadSpaceUnit":"%","btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-76ceb716 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">Why Choose Us</span><h2 class="uagb-ifb-title">Experience the Novation Difference Today</h2></div><p class="uagb-ifb-desc">Discover how our unique approach sets us apart from ordinary interior design services.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/image {"block_id":"3c7a7974","url":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlTablet":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","urlMobile":"https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg","alt":"Inviting living room interior featuring modern design with cozy furnishings and stylish decor.","align":"left","alignTablet":"left","alignMobile":"left","id":14,"linkDestination":"none","width":1200,"widthTablet":1200,"widthMobile":600,"height":450,"heightTablet":300,"heightMobile":250,"naturalWidth":1024,"naturalHeight":480,"sizeSlug":"custom","sizeSlugTablet":"custom","sizeSlugMobile":"custom","imageTopMargin":0,"imageRightMargin":0,"imageLeftMargin":0,"imageBottomMargin":0,"imageTopMarginTablet":0,"imageRightMarginTablet":0,"imageLeftMarginTablet":0,"imageBottomMarginTablet":0,"imageTopMarginMobile":0,"imageRightMarginMobile":0,"imageLeftMarginMobile":0,"imageBottomMarginMobile":0,"imageMarginLink":false,"objectFit":"cover","objectFitTablet":"cover","objectFitMobile":"cover","customHeightSetDesktop":true,"customHeightSetTablet":true,"customHeightSetMobile":true,"imageBorderTopLeftRadius":0,"imageBorderTopRightRadius":80,"imageBorderBottomLeftRadius":80,"imageBorderBottomRightRadius":0,"imageBorderTopLeftRadiusTablet":0,"imageBorderTopRightRadiusTablet":50,"imageBorderBottomLeftRadiusTablet":50,"imageBorderBottomRightRadiusTablet":0,"imageBorderTopLeftRadiusMobile":0,"imageBorderTopRightRadiusMobile":50,"imageBorderBottomLeftRadiusMobile":50,"imageBorderBottomRightRadiusMobile":0,"imageBorderRadiusLink":false} -->\n<div class="wp-block-uagb-image alignleft uagb-block-3c7a7974 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-left"><figure class="wp-block-uagb-image__figure"><img srcset="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg ,https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 780w, https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg 360w" sizes="(max-width: 480px) 150px" src="https://novationinteriors.com/wp/wp-content/uploads/2025/11/pexels-photo-276724.jpeg" alt="Inviting living room interior featuring modern design with cozy furnishings and stylish decor." class="uag-image-14" width="1200" height="450" title="" loading="lazy" role="img"/></figure></div>\n<!-- /wp:uagb/image -->\n\n<!-- wp:uagb/container {"block_id":"84e181c4","widthTablet":100,"directionDesktop":"row","alignItemsDesktop":"flex-start","alignItemsTablet":"flex-start","alignItemsMobile":"flex-start","justifyContentMobile":"flex-start","rowGapMobile":35,"columnGapDesktop":80,"columnGapTablet":30,"widthSetByUser":true} -->\n<div class="wp-block-uagb-container uagb-block-84e181c4"><!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"4bbc11b0","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-4bbc11b0 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">01</span><h3 class="uagb-ifb-title">Personalized Design Solutions</h3></div><p class="uagb-ifb-desc">We take the time to understand your lifestyle and preferences, creating spaces that are truly yours and meaningful.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"e039f349","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-e039f349 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">02</span><h3 class="uagb-ifb-title">Expert Collaboration</h3></div><p class="uagb-ifb-desc">Our team works closely with you throughout the design process, ensuring your vision is realized in every detail.</p></div></div>\n<!-- /wp:uagb/info-box -->\n\n<!-- wp:uagb/info-box {"classMigrate":true,"headingAlign":"left","headingAlignTablet":"left","headingAlignMobile":"left","headingColor":"","subHeadingColor":"","prefixColor":"var(\\u002d\\u002dast-global-color-0)","prefixFontSize":16,"prefixFontSizeTablet":15,"prefixFontSizeMobile":15,"prefixFontWeight":"600","prefixTransform":"uppercase","headSpace":15,"subHeadSpace":0,"block_id":"8ff54d31","showPrefix":true,"showIcon":false,"prefixTopMargin":0,"prefixRightMargin":0,"prefixSpace":15,"prefixLeftMargin":0,"prefixTabletSpace":10,"prefixMobileSpace":10,"prefixLetterSpacing":2,"headTopMargin":0,"headRightMargin":0,"headLeftMargin":0,"headTabletSpace":10,"headMobileSpace":10,"subHeadTopMargin":0,"subHeadRightMargin":0,"subHeadLeftMargin":0,"subHeadMarginTopTablet":0,"subHeadMarginRightTablet":0,"subHeadTabletSpace":0,"subHeadMarginLeftTablet":0,"btnBorderTopWidth":1,"btnBorderLeftWidth":1,"btnBorderRightWidth":1,"btnBorderBottomWidth":1,"btnBorderTopLeftRadius":0,"btnBorderTopRightRadius":0,"btnBorderBottomLeftRadius":0,"btnBorderBottomRightRadius":0,"btnBorderStyle":"solid","btnBorderColor":"#333"} -->\n<div class="wp-block-uagb-info-box uagb-block-8ff54d31 uagb-infobox__content-wrap uagb-infobox-icon-above-title uagb-infobox-image-valign-top"><div class="uagb-ifb-content"><div class="uagb-ifb-title-wrap"><span class="uagb-ifb-title-prefix">03</span><h3 class="uagb-ifb-title">Functional Elegance</h3></div><p class="uagb-ifb-desc">We seamlessly blend aesthetics with functionality, creating beautiful spaces that enhance your daily living.</p></div></div>\n<!-- /wp:uagb/info-box --></div>\n<!-- /wp:uagb/container --></div></div>\n<!-- /wp:uagb/container -->\n\n<!-- wp:block {"ref":178} /-->', 'Home', '', 'inherit', 'closed', 'closed', '', '226-revision-v1', '', '', '2025-11-15 07:20:18', '2025-11-15 07:20:18', '', 226, 'https://novationinteriors.com/wp/?p=468', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_srfm_entries`
--
CREATE TABLE `wp8u_srfm_entries` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`form_id` bigint(20) unsigned DEFAULT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`form_data` longtext DEFAULT NULL,
`logs` longtext DEFAULT NULL,
`notes` longtext DEFAULT NULL,
`submission_info` longtext DEFAULT NULL,
`status` varchar(10) DEFAULT NULL,
`type` varchar(20) DEFAULT NULL,
`extras` longtext DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`ID`),
KEY `idx_form_id` (`form_id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_form_id_created_at_status` (`form_id`,`created_at`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_suretriggers_webhook_requests`
--
CREATE TABLE `wp8u_suretriggers_webhook_requests` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`request_method` varchar(255) DEFAULT NULL,
`request_url` varchar(255) NOT NULL,
`request_data` longtext NOT NULL,
`response_code` int(3) NOT NULL,
`status` varchar(20) NOT NULL,
`error_info` varchar(255) NOT NULL,
`retry_attempts` int(3) DEFAULT 0,
`processed_at` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_termmeta`
--
CREATE TABLE `wp8u_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_termmeta`
--
INSERT INTO `wp8u_termmeta` VALUES
(1, 3, 'nav_menu_id', '2'),
(2, 3, '_astra_sites_imported_term', '1');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_terms`
--
CREATE TABLE `wp8u_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_terms`
--
INSERT INTO `wp8u_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'astra', 'astra', 0),
(3, 'Menu', 'menu', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_term_relationships`
--
CREATE TABLE `wp8u_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_term_relationships`
--
INSERT INTO `wp8u_term_relationships` VALUES
(1, 1, 0),
(6, 2, 0),
(44, 3, 0),
(45, 3, 0),
(55, 2, 0),
(230, 3, 0),
(231, 3, 0),
(244, 1, 0),
(246, 1, 0),
(247, 1, 0),
(301, 3, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_term_taxonomy`
--
CREATE TABLE `wp8u_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_term_taxonomy`
--
INSERT INTO `wp8u_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 4),
(2, 2, 'wp_theme', '', 0, 2),
(3, 3, 'nav_menu', '', 0, 5);
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_usermeta`
--
CREATE TABLE `wp8u_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_usermeta`
--
INSERT INTO `wp8u_usermeta` VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp8u_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wp8u_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:2:{s:64:"9f48235e2f2f1f38c817ea4d964c9baa3734a8dfe7494ee1efcaae9ed9b0f6cb";a:4:{s:10:"expiration";i:1763354288;s:2:"ip";s:12:"43.243.83.64";s:2:"ua";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36";s:5:"login";i:1763181488;}s:64:"f5af8df039d4bdb1a6d992f55d402ef4d72e77268009ab5d82d7390ee19d600a";a:4:{s:10:"expiration";i:1763448479;s:2:"ip";s:15:"125.165.108.149";s:2:"ua";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36";s:5:"login";i:1763275679;}}'),
(17, 1, 'wp8u_dashboard_quick_press_last_post_id', '5'),
(18, 1, 'community-events-location', 'a:1:{s:2:"ip";s:13:"125.165.108.0";}'),
(19, 1, 'wp8u_user-settings', 'libraryContent=browse'),
(20, 1, 'wp8u_user-settings-time', '1763183142'),
(21, 1, 'pse_country_code', 'IN'),
(22, 1, 'wp8u_persisted_preferences', 'a:3:{s:4:"core";a:1:{s:26:"isComplementaryAreaVisible";b:1;}s:14:"core/edit-post";a:1:{s:12:"welcomeGuide";b:0;}s:9:"_modified";s:24:"2025-11-15T07:16:59.482Z";}'),
(23, 1, 'st_last_login', '1763275679');
-- --------------------------------------------------------
--
-- Table structure for table `wp8u_users`
--
CREATE TABLE `wp8u_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`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 '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp8u_users`
--
INSERT INTO `wp8u_users` VALUES
(1, 'admin', '$wp$2y$10$r7XSOraf/oVYB0ecJ5ImgO/i1nIguaXM9z2LEUv8AZdDT0ARvgWcq', 'admin', 'admin@novationinteriors.com', 'https://novationinteriors.com/wp', '2025-11-15 04:37:52', '', 0, 'admin');
-- --------------------------------------------------------
/*!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 */;